:root {
  color-scheme: light;
  --ink: #14231f;
  --muted: #62756f;
  --dim: #91a19b;
  --page: #f6fbf8;
  --paper: rgba(255, 255, 255, .82);
  --paper-solid: #fff;
  --line: rgba(11, 84, 66, .12);
  --soft-line: rgba(11, 84, 66, .08);
  --accent: #07806a;
  --accent-strong: #00a982;
  --accent-soft: #dcf4ec;
  --accent-line: rgba(7, 128, 106, .22);
  --amber: #f7b928;
  --shadow: 0 24px 72px rgba(8, 69, 54, .13);
  --display: "SF Pro Display", "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1220px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,251,248,0) 560px),
    radial-gradient(circle at 82% 16%, rgba(0,169,130,.105), transparent 32rem),
    var(--page);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(7, 128, 106, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 128, 106, .06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black 0 70%, transparent);
}
.glow {
  position: absolute;
  width: 38vw;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(96px);
  opacity: .42;
}
.glow-a {
  left: -14vw;
  top: 10vh;
  background: #c6f6e6;
}
.glow-b {
  right: -16vw;
  top: -12vw;
  background: #d9fff1;
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.brand,
.nav-actions,
.nav-links {
  display: flex;
  align-items: center;
}
.brand {
  gap: 12px;
  font-weight: 780;
  letter-spacing: -.03em;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(7, 128, 106, .18);
}
.brand small {
  color: #334541;
  font-size: .78em;
}
.nav-links {
  justify-content: center;
  gap: 8px;
}
.nav-links a,
.github-link,
.language-switch {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(8, 69, 54, .08);
  backdrop-filter: blur(18px);
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}
.nav-links a {
  padding: 0 16px;
  color: #31413d;
  font-size: 13px;
  font-weight: 760;
}
.nav-actions {
  gap: 9px;
}
.language-switcher {
  position: relative;
}
.language-switch {
  width: 132px;
  padding: 0 14px 0 16px;
  justify-content: space-between;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .03em;
}
.language-switch-caret {
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: .55;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease, opacity .2s ease;
}
.language-switch[aria-expanded="true"] .language-switch-caret {
  opacity: .9;
  transform: translateY(1px) rotate(225deg);
}
.language-switch:focus-visible {
  outline: none;
  border-color: rgba(7, 128, 106, .3);
  box-shadow:
    0 0 0 3px rgba(7, 128, 106, .12),
    0 12px 30px rgba(8, 69, 54, .1);
}
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  width: 210px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,250,247,.88));
  box-shadow: 0 26px 58px rgba(8, 69, 54, .16);
  backdrop-filter: blur(22px);
}
.language-option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #30413d;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -.01em;
  text-align: left;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.language-option:hover {
  background: rgba(7, 128, 106, .08);
  color: var(--accent);
}
.language-option:active {
  transform: translateY(1px);
}
.language-option:focus-visible {
  outline: none;
  background: rgba(7, 128, 106, .08);
  box-shadow: inset 0 0 0 1px rgba(7, 128, 106, .14), 0 0 0 3px rgba(7, 128, 106, .12);
}
.language-option[aria-checked="true"] {
  background: linear-gradient(180deg, rgba(220, 244, 236, .96), rgba(255, 255, 255, .82));
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(7, 128, 106, .12);
}
.language-option-indicator {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scale(.35);
  transition: opacity .18s ease, transform .18s ease;
}
.language-option[aria-checked="true"] .language-option-indicator {
  opacity: 1;
  transform: scale(1);
}
.github-link {
  gap: 8px;
  padding: 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
}
.github-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.nav-links a:hover,
.github-link:hover,
.language-switch:hover {
  border-color: rgba(7,128,106,.24);
  background: #fff;
  box-shadow: 0 14px 32px rgba(8, 69, 54, .1);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100dvh - 78px);
  display: grid;
  grid-template-columns: minmax(440px, .78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 3.8vw, 52px);
  align-items: center;
  padding: 16px 0 34px;
}
.hero-copy {
  max-width: 560px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 830;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1,
h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -.058em;
}
html[lang^="zh"] h1,
html[lang^="zh"] h2 {
  font-family: "PingFang SC", "SF Pro Display", "Avenir Next", sans-serif;
  letter-spacing: -.025em;
}
h1 {
  max-width: 10.8em;
  font-size: clamp(44px, 4.65vw, 64px);
  line-height: .98;
  font-weight: 790;
}
html[lang^="zh"] h1 {
  max-width: 8.8em;
  font-size: clamp(43px, 4.25vw, 60px);
  line-height: 1.04;
}
.lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.72;
}
.hero-badges {
  max-width: 520px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.hero-badges span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 128, 106, .14);
  border-radius: 999px;
  padding: 0 12px;
  color: #33524b;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 10px 24px rgba(8, 69, 54, .06);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .02em;
  backdrop-filter: blur(14px);
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.download-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 236px;
  padding: 14px 20px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  background: #161d1a;
  box-shadow: 0 20px 54px rgba(8, 69, 54, .22);
  text-align: left;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.download-button:hover {
  background: #0e1512;
  transform: translateY(-2px);
  box-shadow: 0 28px 74px rgba(8, 69, 54, .26);
}
.download-button:active {
  transform: translateY(0) scale(.99);
}
.download-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: 17px;
}
.download-button strong,
.download-button small {
  display: block;
  white-space: nowrap;
}
.download-button strong {
  font-size: 15px;
}
.download-button small {
  margin-top: 2px;
  color: rgba(255,255,255,.66);
  font-size: 10px;
}
.release-note {
  color: var(--dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-stage {
  position: relative;
  margin: 0 0 0 -3vw;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 8% 3% 10%;
  z-index: -1;
  height: 26%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7,128,106,.16), rgba(247,185,40,.12));
  filter: blur(28px);
}
.hero-stage img {
  display: block;
  width: min(790px, 104%);
  height: auto;
  filter: drop-shadow(0 32px 68px rgba(8, 69, 54, .14));
  animation: floatPreview 7.5s ease-in-out infinite;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -38px;
  padding-bottom: 96px;
}
.capabilities article,
.workflow-card,
.guide,
.shortcut-card,
.privacy {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 16px 48px rgba(8, 69, 54, .075);
  backdrop-filter: blur(20px);
}
.capabilities article {
  min-height: 164px;
  padding: 22px;
  border-radius: 22px;
}
.capabilities span,
.workflow-card span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.capabilities strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.capabilities p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 108px 0;
  border-top: 1px solid var(--line);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}
h2 {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.04;
  font-weight: 760;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.workflow-card {
  min-height: 318px;
  padding: 26px;
  border-radius: 26px;
}
.workflow-card h3 {
  margin: 70px 0 14px;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -.035em;
}
.workflow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.guide {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 32px;
}
.guide-copy p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.guide-list {
  counter-reset: step;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-list li {
  position: relative;
  min-height: 96px;
  padding: 18px 18px 18px 66px;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  background: rgba(255,255,255,.62);
}
.guide-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 830;
}
.guide-list strong,
.guide-list span {
  display: block;
}
.guide-list strong {
  font-size: 18px;
  letter-spacing: -.02em;
}
.guide-list span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.6;
}

.changelog {
  margin-top: 104px;
}
.changelog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.changelog-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(247,252,249,.78));
  box-shadow: 0 16px 48px rgba(8, 69, 54, .075);
  backdrop-filter: blur(20px);
}
.changelog-status {
  min-height: 148px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 760;
}
.changelog-card time,
.changelog-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.changelog-card h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -.035em;
}
.changelog-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.changelog-card li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  line-height: 1.58;
}
.changelog-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-strong);
  opacity: .72;
}
.changelog-link {
  width: max-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shortcuts {
  min-height: 100dvh;
  display: grid;
  align-content: center;
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.shortcut-card {
  min-height: 142px;
  padding: 20px;
  border-radius: 22px;
}
.shortcut-card kbd {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 32px;
  margin: 0 5px 14px 0;
  padding: 0 9px;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  border-radius: 10px;
  background: rgba(220, 244, 236, .72);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 820;
}
.shortcut-card span {
  display: block;
  color: #374a45;
  line-height: 1.58;
}

.privacy {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  margin-top: 110px;
  padding: 48px;
  border-radius: 30px;
}
.privacy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}
.final-cta {
  padding: 132px 0 124px;
  text-align: center;
}
.final-cta img {
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(7, 128, 106, .18);
}
.final-cta h2 {
  max-width: 900px;
  margin: 0 auto 34px;
  font-size: clamp(44px, 5.8vw, 82px);
}
.download-button.compact {
  min-width: 220px;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  color: var(--dim);
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.motion {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1);
}
.motion.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.workflow-card:nth-child(2),
.capabilities article:nth-child(2),
.shortcut-card:nth-child(2) { transition-delay: .06s; }
.workflow-card:nth-child(3),
.capabilities article:nth-child(3),
.shortcut-card:nth-child(3) { transition-delay: .12s; }
.workflow-card:nth-child(4),
.capabilities article:nth-child(4),
.shortcut-card:nth-child(4) { transition-delay: .18s; }

@keyframes floatPreview {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: auto auto;
  }
  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: stretch;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .nav-actions {
    justify-content: end;
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 42px;
  }
  .hero-stage {
    margin: 0 -4vw;
  }
  .hero-stage img {
    width: min(1000px, 108vw);
  }
  .capabilities,
  .workflow-grid,
  .shortcut-grid,
  .changelog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 620px);
  }
  .nav {
    min-height: 96px;
    gap: 8px;
    padding: 10px 0 8px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .brand span {
    display: grid;
    line-height: 1.08;
  }
  .nav-links {
    gap: 6px;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  .nav-links a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 7px;
    font-size: 11.5px;
    box-shadow: 0 8px 20px rgba(8, 69, 54, .06);
  }
  .github-link {
    width: 38px;
    min-height: 38px;
    padding: 0;
  }
  .github-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .language-switch {
    width: 120px;
    min-height: 38px;
    box-shadow: 0 8px 20px rgba(8, 69, 54, .06);
  }
  .language-menu {
    width: min(210px, calc(100vw - 32px));
  }
  .language-option {
    min-height: 40px;
    font-size: 13px;
  }
  .hero {
    gap: 22px;
    padding: 18px 0 30px;
  }
  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: .12em;
  }
  h1,
  html[lang^="zh"] h1 {
    max-width: 9.4em;
    font-size: clamp(34px, 9.8vw, 46px);
    line-height: 1.04;
    letter-spacing: -.046em;
  }
  .lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.66;
  }
  .hero-badges {
    gap: 7px;
    margin-top: 16px;
  }
  .hero-badges span {
    min-height: 29px;
    padding: 0 10px;
    font-size: 11.5px;
    box-shadow: 0 8px 18px rgba(8, 69, 54, .055);
  }
  .hero-actions {
    gap: 11px;
    margin-top: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .download-button {
    width: min(100%, 304px);
    min-width: 0;
    padding: 13px 18px;
    box-shadow: 0 16px 44px rgba(8, 69, 54, .2);
  }
  .release-note {
    margin-left: 2px;
  }
  .hero-stage {
    width: calc(100% + 18px);
    margin: 2px -9px 0;
    border-radius: 22px;
    background: rgba(255,255,255,.58);
    box-shadow: 0 20px 54px rgba(8, 69, 54, .09);
    overflow: hidden;
  }
  .hero-stage::after {
    inset: auto 12% 4% 14%;
    height: 18%;
    filter: blur(24px);
  }
  .hero-stage img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
    filter: drop-shadow(0 18px 38px rgba(8, 69, 54, .12));
  }
  .capabilities {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 2px;
    padding-bottom: 62px;
  }
  .capabilities article {
    min-height: auto;
    padding: 19px;
    border-radius: 18px;
  }
  .section {
    padding: 70px 0;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .section-copy {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.62;
  }
  h2 {
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1.08;
    letter-spacing: -.046em;
  }
  .workflow-grid,
  .shortcut-grid,
  .changelog-grid {
    grid-template-columns: 1fr;
  }
  .workflow-card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }
  .workflow-card h3 {
    margin: 42px 0 12px;
    font-size: 22px;
    line-height: 1.18;
  }
  .guide,
  .privacy {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
    border-radius: 20px;
  }
  .guide-copy p:last-child,
  .privacy p:last-child {
    font-size: 16px;
    line-height: 1.68;
  }
  .guide-list {
    gap: 10px;
  }
  .guide-list li {
    min-height: auto;
    padding: 16px 16px 16px 58px;
    border-radius: 16px;
  }
  .guide-list li::before {
    left: 16px;
    top: 16px;
    width: 30px;
    height: 30px;
  }
  .changelog {
    margin-top: 64px;
  }
  .changelog-card {
    min-height: auto;
    padding: 21px;
    border-radius: 20px;
  }
  .changelog-card h3 {
    font-size: 22px;
    line-height: 1.18;
  }
  .shortcuts {
    min-height: auto;
    padding: 70px 0;
  }
  .shortcut-card {
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }
  .shortcut-card kbd {
    min-width: 34px;
    height: 30px;
    margin-bottom: 12px;
    border-radius: 9px;
    font-size: 13px;
  }
  .privacy {
    margin-top: 64px;
  }
  .final-cta {
    padding: 78px 0 84px;
  }
  .final-cta img {
    width: 78px;
    height: 78px;
    margin-bottom: 22px;
    border-radius: 20px;
  }
  .final-cta h2 {
    margin-bottom: 28px;
    font-size: clamp(34px, 9.5vw, 46px);
    line-height: 1.06;
  }
  .footer {
    flex-direction: column;
    padding-bottom: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .motion {
    opacity: 1;
    transform: none;
  }
}
