@charset "UTF-8";

:root {
  --ink: #071329;
  --ink-soft: #0d2143;
  --panel: rgba(18, 43, 83, 0.68);
  --panel-deep: rgba(10, 28, 59, 0.86);
  --line: rgba(144, 212, 255, 0.2);
  --cyan: #8ce8ff;
  --blue: #63b8ff;
  --lavender: #b7a1ff;
  --text: #f4f8ff;
  --muted: #a9bad6;
  --radius: 5px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(143, 200, 255, 0.12);
  background: rgba(5, 15, 35, 0.78);
  backdrop-filter: blur(14px);
}

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

.header-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  background: #b4e8ff;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  color: var(--cyan);
  font-size: 19px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: #8ea7cc;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 8px 13px;
  color: #c1d4ef;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan);
  background: rgba(127, 208, 255, 0.1);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(88, 160, 227, 0.12);
  cursor: pointer;
}

.mobile-download {
  display: none;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--cyan);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 630px;
  background:
    radial-gradient(circle at 76% 17%, rgba(116, 197, 255, 0.3), transparent 31%),
    radial-gradient(circle at 24% 84%, rgba(107, 92, 207, 0.28), transparent 36%),
    linear-gradient(120deg, #07152e 0%, #102953 58%, #071329 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.55;
  background-image: linear-gradient(rgba(141, 221, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(141, 221, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: 630px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 50px;
}

.hero-copy {
  padding: 78px 0;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: var(--cyan);
}

.hero h1 {
  max-width: 640px;
  margin: 18px 0;
  font-size: clamp(42px, 5.1vw, 73px);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 26px rgba(123, 218, 255, 0.28);
}

.hero-intro {
  max-width: 570px;
  margin: 0;
  color: #c1d2e9;
  font-size: 16px;
  line-height: 1.85;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.hero-points span {
  padding: 7px 12px;
  border: 1px solid rgba(139, 215, 255, 0.24);
  border-radius: 5px;
  color: #d9ecff;
  background: rgba(103, 171, 233, 0.09);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button b {
  font-size: 19px;
  line-height: 1;
}

.button-primary {
  color: #092046;
  background: linear-gradient(115deg, #9defff, #70bdff);
  box-shadow: 0 12px 30px rgba(77, 184, 255, 0.23);
}

.button-quiet {
  border-color: rgba(164, 211, 255, 0.35);
  color: #dff1ff;
  background: rgba(17, 52, 95, 0.45);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.age-label {
  display: block;
  margin-top: 19px;
  color: #91acd0;
  font-size: 12px;
}

.hero-device {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.device-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 220, 255, 0.42), rgba(113, 130, 255, 0.11) 45%, transparent 71%);
  filter: blur(5px);
}

.device-frame {
  position: relative;
  z-index: 1;
  width: min(294px, 72vw);
  padding: 10px;
  border: 1px solid rgba(191, 233, 255, 0.68);
  border-radius: 5px;
  background: #eaf6ff;
  box-shadow: 0 23px 60px rgba(0, 0, 0, 0.36);
}

.device-top {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.device-top span {
  display: block;
  width: 72px;
  height: 16px;
  border-radius: 5px;
  background: #071329;
}

.device-top i {
  position: absolute;
  top: 5px;
  right: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #72d6ff;
}

.device-frame img {
  width: 100%;
  border-radius: 5px;
  object-fit: contain;
}

.hero-note {
  position: absolute;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(186, 225, 255, 0.28);
  border-radius: 5px;
  color: #dceeff;
  background: rgba(9, 31, 65, 0.72);
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  line-height: 1.6;
}

.hero-note strong {
  color: var(--cyan);
}

.note-one {
  top: 23%;
  right: -1%;
}

.note-two {
  bottom: 18%;
  left: -2%;
}

.note-two span {
  color: var(--lavender);
  font-size: 17px;
}

.section {
  padding: 108px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2,
.schedule-intro h2,
.faq-copy h2,
.download-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.05em;
}

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

.split-heading > p,
.screenshot-heading > p,
.schedule-intro > p,
.comments-heading > p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.discover-section {
  background: #f5faff;
  color: #112444;
}

.discover-section .section-kicker {
  color: #378cdc;
}

.discover-section .split-heading > p {
  color: #5c7190;
}

.discover-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.56fr;
  gap: 16px;
}

.feature-panel,
.cover-column {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-large {
  display: flex;
  align-items: end;
  padding: 30px;
  background: linear-gradient(125deg, #2a4f9f, #513b96);
}

.feature-large::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(21, 38, 89, 0.84), rgba(28, 41, 105, 0.14));
}

.feature-large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
}

.feature-panel-copy {
  position: relative;
  z-index: 1;
  max-width: 310px;
}

.feature-panel-copy p,
.feature-panel-copy h3,
.feature-panel-copy a {
  margin: 0;
}

.feature-panel-copy p {
  color: #c7eaff;
  font-size: 13px;
}

.feature-panel-copy h3 {
  margin: 11px 0 18px;
  color: #fff;
  font-size: 29px;
  line-height: 1.25;
}

.feature-panel-copy a {
  display: inline-flex;
  gap: 9px;
  color: #d9f4ff;
  font-size: 13px;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-small {
  min-height: 142px;
  padding: 22px;
  color: #213553;
  background: #d9efff;
}

.feature-blue {
  color: #fff;
  background: #407dd6;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 5px;
  color: #3d84c9;
  background: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.feature-blue .feature-icon {
  color: #eaffff;
  background: rgba(255, 255, 255, 0.17);
}

.feature-small h3,
.feature-small p {
  margin: 0;
}

.feature-small h3 {
  font-size: 18px;
}

.feature-small p {
  margin-top: 8px;
  opacity: 0.74;
  font-size: 12px;
  line-height: 1.65;
}

.cover-column {
  min-height: 300px;
  background: #162951;
}

.cover-column img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.75;
}

.cover-column::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(7, 19, 41, 0.94));
}

.cover-column div {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.cover-column span {
  color: var(--cyan);
  font-size: 26px;
  font-weight: 700;
}

.cover-column p {
  margin: 5px 0 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
}

.screenshot-section {
  overflow: hidden;
  background: linear-gradient(160deg, #08172f, #102a58);
}

.screenshot-heading > p {
  color: #b6c9e5;
}

.screenshot-controls {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  margin-bottom: 16px;
}

.screen-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(154, 219, 255, 0.35);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(94, 175, 240, 0.09);
  cursor: pointer;
}

.screen-arrow:hover,
.screen-arrow:focus-visible {
  background: rgba(116, 211, 255, 0.22);
  outline: none;
}

.drag-tip {
  margin-right: auto;
  color: #8fa8cc;
  font-size: 12px;
}

.drag-tip i {
  margin-left: 4px;
  color: var(--cyan);
  font-size: 16px;
  font-style: normal;
}

.screenshot-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  overflow: visible;
  padding: 6px 2px 24px;
}

.screenshot-rail.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.screenshot-rail:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

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

.screen-media {
  width: 250px;
  height: 450px;
  padding: 0;
  border: 1px solid rgba(170, 222, 255, 0.48);
  border-radius: 5px;
  background: #eaf8ff;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22);
}

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

.screen-card figcaption {
  display: flex;
  gap: 12px;
  padding: 15px 4px 0;
}

.screen-card figcaption > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.screen-card figcaption div {
  display: grid;
  gap: 4px;
}

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

.screen-card figcaption small {
  color: #9bb1d0;
  font-size: 12px;
}

.schedule-section {
  background: #061126;
}

.schedule-intro {
  margin-bottom: 34px;
}

.week-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 9px;
}

.week-card {
  flex: 1 0 155px;
  padding: 13px;
  border: 1px solid rgba(132, 207, 255, 0.16);
  border-radius: 5px;
  background: rgba(18, 45, 85, 0.58);
}

.week-card.selected {
  border-color: rgba(135, 228, 255, 0.65);
  background: linear-gradient(165deg, rgba(71, 166, 225, 0.45), rgba(89, 85, 188, 0.52));
}

.week-card > span {
  color: var(--cyan);
  font-size: 12px;
}

.week-card img {
  width: 100%;
  height: 170px;
  margin: 10px 0 11px;
  border-radius: 5px;
  background: #143361;
  object-fit: contain;
}

.week-card strong,
.week-card small {
  display: block;
}

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

.week-card small {
  margin-top: 5px;
  color: #91a9cc;
  font-size: 12px;
}

.comments-section {
  color: #102649;
  background: #eff8ff;
}

.comments-section .section-kicker {
  color: #378cdc;
}

.comments-heading > p {
  color: #617792;
}

.comment-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 3px 0 8px;
}

.comment-card {
  flex: 1 0 275px;
  min-height: 180px;
  padding: 21px;
  border: 1px solid #d6e8f6;
  border-radius: 5px;
  background: #fff;
}

.comment-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.comment-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: url("../icons/avatar.svg");
  background-position: center;
  background-size: cover;
}

.comment-top strong {
  font-size: 13px;
}

.comment-rating {
  margin-left: auto;
  color: #f5b948;
  font-size: 12px;
  white-space: nowrap;
}

.comment-rating .fa {
  margin-left: 1px;
}

.comment-card p {
  margin: 18px 0 15px;
  color: #506584;
  font-size: 13px;
  line-height: 1.8;
}

.comment-card time {
  color: #9aacc4;
  font-size: 12px;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background: #071830;
}

.faq-section::before {
  position: absolute;
  right: -180px;
  bottom: -230px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(143, 219, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.faq-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 24px;
}

.faq-copy > p:not(.section-kicker) {
  max-width: 300px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-spark {
  display: inline-block;
  margin-top: 15px;
  color: var(--lavender);
  font-size: 34px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(147, 213, 255, 0.19);
  border-radius: 5px;
  background: rgba(25, 59, 103, 0.42);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
}

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

.faq-list summary i {
  color: var(--cyan);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #aec3df;
  font-size: 13px;
  line-height: 1.85;
}

.faq-list details p a {
  color: var(--cyan);
  overflow-wrap: anywhere;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background: linear-gradient(107deg, #526fae 0%, #8caaf1 48%, #d5dffc 100%);
}

.download-sky {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background:
    radial-gradient(circle at 12% 36%, rgba(255, 255, 255, 0.85) 0 2px, transparent 3px),
    radial-gradient(circle at 19% 26%, rgba(255, 255, 255, 0.75) 0 1px, transparent 2px),
    radial-gradient(ellipse at 80% 115%, rgba(68, 83, 155, 0.76), transparent 56%);
}

.download-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.download-copy {
  color: #fff;
}

.download-copy p,
.download-copy span {
  font-size: 14px;
}

.download-copy p {
  margin: 0;
  opacity: 0.9;
}

.download-copy h2 {
  margin: 4px 0;
  font-size: 48px;
}

.download-copy span {
  color: #eef4ff;
}

.button-download {
  flex: 0 0 auto;
  min-height: 56px;
  padding: 0 29px;
  color: #102559;
  background: #fff;
  box-shadow: 0 13px 26px rgba(36, 60, 137, 0.28);
}

.site-footer {
  border-top: 1px solid rgba(159, 217, 255, 0.15);
  background: #051025;
}

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

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 17px;
  color: #9eb4d1;
  font-size: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.footer-shell > p {
  margin: 0;
  color: #738aa9;
  font-size: 12px;
  text-align: right;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(175, 228, 255, 0.36);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(9, 34, 69, 0.86);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.back-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 860px) {
  .header-shell,
  .section-shell,
  .footer-shell,
  .hero-shell {
    width: min(100% - 32px, 680px);
  }

  .header-shell {
    min-height: 67px;
    gap: 14px;
  }

  body {
    padding-top: 67px;
  }

  .menu-toggle {
    display: block;
    margin-left: 0;
  }

  .mobile-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    margin-left: auto;
    padding: 0 12px;
    border: 1px solid rgba(147, 222, 255, 0.48);
    border-radius: 5px;
    color: #08204a;
    background: linear-gradient(115deg, #9cecff, #72bdff);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #0b2042;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  }

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

  .site-nav ul {
    display: block;
  }

  .site-nav a {
    padding: 12px;
  }

  .screenshot-controls {
    display: flex;
  }

  .screenshot-rail {
    display: flex;
    overflow-x: auto;
    scrollbar-color: #74cbfb #10274c;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
    cursor: grab;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 60px 0 12px;
  }

  .hero-device {
    min-height: 470px;
  }

  .discover-layout,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .feature-stack {
    grid-template-columns: 1fr 1fr;
  }

  .cover-column {
    min-height: 230px;
  }

  .faq-copy {
    position: static;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 600px) {
  .header-shell,
  .section-shell,
  .footer-shell,
  .hero-shell {
    width: min(100% - 28px, 500px);
  }

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

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

  .hero-copy {
    padding-top: 49px;
    text-align: center;
  }

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

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

  .hero h1 {
    font-size: clamp(39px, 12vw, 53px);
  }

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

  .hero-device {
    min-height: 430px;
  }

  .note-one {
    top: 18%;
    right: 0;
  }

  .note-two {
    bottom: 12%;
    left: 0;
  }

  .split-heading,
  .screenshot-heading,
  .schedule-intro,
  .comments-heading,
  .download-shell,
  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading,
  .schedule-intro {
    margin-bottom: 27px;
  }

  .feature-stack {
    grid-template-columns: 1fr;
  }

  .feature-large {
    min-height: 270px;
  }

  .feature-panel-copy h3 {
    font-size: 25px;
  }

  .week-card {
    flex-basis: 145px;
  }

  .faq-shell {
    gap: 35px;
  }

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

  .button-download {
    width: 100%;
  }

  .footer-shell > p {
    width: 100%;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-shell {
    align-items: center;
    text-align: center;
  }

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

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

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