@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
:root {
  --paper: #f9f9f6;
  --lilac: #eeedf5;
  --purple: #c1afe9;
  --plum: #302638;
  --muted: #68616e;
  --line: #dcd8e1;
  --peach: #f4bd9f;
  --green: #d8e5bc;
  --white: #fffefa;
  --font: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--plum);
  font: 400 15px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:disabled {
  cursor: default;
}
svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  vertical-align: middle;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #72529e;
  outline-offset: 6px;
}
::selection {
  color: var(--plum);
  background: var(--peach);
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  background: var(--plum);
  color: var(--white);
  padding: 12px 20px;
  z-index: 100;
  transform: translateY(-200%);
  border-radius: 8px;
}
.skip-link:focus {
  transform: none;
}
.top-surface,
.hero-surface {
  background: var(--lilac);
}
.hero-surface {
  border-radius: 0 0 40px 40px;
}
.site-header {
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1.1px;
  white-space: nowrap;
}
.brand svg {
  width: 31px;
  height: 31px;
}
.site-header nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}
.site-header nav a {
  padding: 8px 0;
}
.site-header nav a:hover,
.inline-link:hover {
  color: #765198;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button svg {
  width: 19px;
  height: 19px;
}
.button-dark {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 3px 0 rgba(35, 21, 43, 0.12);
}
.button-dark:hover {
  background: #51415d;
  box-shadow: 0 5px 14px #30263820;
}
.button-outline {
  border-color: #c7c0d0;
  background: transparent;
}
.button-outline:hover {
  background: #e4deed;
}
.button-discord {
  background: #d9c7ee;
  border-color: #bba2d5;
  color: #49305e;
}
.button-discord:hover {
  background: #cfb6e7;
  border-color: #a488c2;
}
.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 12px;
  border-radius: 9px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding-top: 29px;
  padding-bottom: 50px;
  min-height: 624px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.intro {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 25px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #8067a4;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #d9cde9;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(62px, 6.55vw, 91px);
  letter-spacing: -6px;
  line-height: 1.035;
  max-width: 620px;
}
.hero-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 400px;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-demo-link {
  flex-basis: 100%;
  justify-content: flex-start;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: none;
  padding: 7px 0;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}
.text-button:hover .play-circle {
  background: #dbd0ed;
}
.play-circle {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #bfb4cd;
  transition: background 0.2s;
}
.play-circle svg {
  width: 13px;
  height: 13px;
  margin-left: -1px;
}
.download-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 15px;
}
.download-meta span {
  padding: 0 6px;
  color: #a196ac;
}
.install-note {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  margin-top: 8px;
  color: #64526f;
  text-decoration: underline;
  text-decoration-color: #b7a9c2;
  text-underline-offset: 3px;
}
.install-note svg {
  width: 12px;
  height: 12px;
}
.hero-demo {
  min-width: 0;
  margin-left: -12px;
  position: relative;
}
.demo-stage {
  height: 480px;
  position: relative;
}
.demo-backdrop {
  position: absolute;
  inset: 21px 13px 35px 28px;
  background: #ded4ed;
  border-radius: 48% 48% 45% 44%;
  transform: rotate(-12deg);
}
.voice-trail {
  position: absolute;
  width: 110%;
  height: 100%;
  left: -5%;
  top: 0;
  color: #ac91c4;
  opacity: 0.7;
}
.voice-note {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  top: 12px;
  left: 67px;
  max-width: 356px;
  transform: rotate(-5deg);
  z-index: 3;
  background: var(--peach);
  padding: 17px 21px;
  border-radius: 16px 16px 16px 3px;
  box-shadow: 0 5px 0 #dca38240;
  color: #573824;
}
.voice-note svg {
  width: 19px;
  height: 19px;
}
.voice-note p {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}
.message-window {
  position: absolute;
  top: 121px;
  left: 83px;
  width: calc(100% - 90px);
  min-height: 239px;
  background: var(--white);
  border: 1px solid #d8d0e0;
  border-radius: 15px;
  box-shadow:
    0 20px 38px #59426e18,
    0 3px 8px #30263809;
  transform: rotate(3deg);
  z-index: 2;
  overflow: hidden;
}
.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-bottom: 1px solid #ece8ed;
  color: #716279;
  font-size: 9px;
  gap: 5px;
}
.window-dots {
  display: flex;
  gap: 4px;
}
.window-dots i {
  width: 6px;
  height: 6px;
  background: #dcd5e0;
  border-radius: 50%;
}
.window-dots i:first-child {
  background: #e9aaa4;
}
.window-dots i:nth-child(2) {
  background: #e9d2a4;
}
.window-dots i:nth-child(3) {
  background: #becdb0;
}
.window-mark {
  width: 16px;
  height: 16px;
  opacity: 0.55;
}
.window-body {
  padding: 17px 18px 20px;
  min-height: 152px;
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 10px;
}
.message-context {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 18px;
  font-size: 10px;
  font-weight: 800;
}
.context-icon {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}
.context-label {
  margin-left: auto;
  font-size: 8px;
  font-weight: 400;
  color: #716279;
}
.message-avatar {
  width: 29px;
  height: 29px;
  background: #e4ddf0;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 800;
  transform: rotate(-3deg);
}
.message-author {
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 5px;
}
.message-author span {
  font-size: 8px;
  margin-left: 7px;
  color: #716279;
  font-weight: 400;
}
.output-text {
  font-size: 13px;
  line-height: 1.75;
  min-height: 62px;
  transition: opacity 0.2s;
}
.composer-bottom {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 14px 13px;
  padding: 8px 10px;
  color: #716279;
  border: 1px solid #e5e0e9;
  border-radius: 6px;
  font-size: 8px;
}
.composer-plus {
  font-size: 17px;
  line-height: 1;
}
.send-icon {
  margin-left: auto;
  background: #ddd5e9;
  color: #8d799f;
  border-radius: 4px;
  line-height: 19px;
  width: 21px;
  text-align: center;
  font-size: 14px;
}
.fn-key {
  position: absolute;
  z-index: 4;
  left: 13px;
  bottom: 6px;
  width: 158px;
  height: 160px;
  border: 0;
  background: #9074b7;
  border-radius: 29px;
  padding: 6px 8px 17px;
  transform: rotate(-11deg);
  box-shadow:
    0 11px 0 #765a9c,
    0 15px 0 #d2c3e4,
    6px 29px 24px #47345d30;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.key-face {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  background: linear-gradient(140deg, #d3bff0, #bba1df);
  background-color: #c6afe7;
  border: 1px solid #dfcef4;
  border-radius: 22px;
  box-shadow:
    inset 0 2px 1px #ffffff75,
    inset 0 -3px 4px #987dbd;
  overflow: hidden;
}
.key-label {
  position: absolute;
  right: 18px;
  bottom: 3px;
  font-size: 63px;
  font-weight: 600;
  letter-spacing: -5px;
  line-height: 1.5;
  color: #584073;
  text-shadow: 0 1px 1px #eadcfb;
}
.key-globe {
  position: absolute;
  left: 16px;
  top: 8px;
  font-size: 25px;
  color: #72558e;
}
.fn-key:hover {
  transform: rotate(-8deg) translateY(3px);
  box-shadow:
    0 8px 0 #765a9c,
    0 12px 0 #d2c3e4,
    6px 23px 24px #47345d25;
}
.fn-key:active,
.demo-stage[data-state="recording"] .fn-key {
  transform: rotate(-8deg) translateY(8px);
  box-shadow:
    0 3px 0 #765a9c,
    0 6px 0 #d2c3e4,
    4px 16px 18px #47345d25;
}
.key-hint {
  position: absolute;
  left: 174px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 1px;
  transform: rotate(-5deg);
  color: #816b92;
  font-size: 11px;
}
.key-hint svg {
  width: 50px;
  height: 32px;
}
.dictation-pill {
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--plum);
  color: #ebe3f0;
  padding: 13px 16px;
  border-radius: 30px;
  box-shadow: 0 8px 15px #30263820;
  font-size: 9px;
  transform: rotate(-3deg);
  min-width: 194px;
}
.pill-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach);
}
.mini-wave {
  height: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.mini-wave i {
  height: 8px;
  width: 2px;
  background: #d9c6ef;
  border-radius: 2px;
}
.mini-wave i:nth-child(2n) {
  height: 16px;
}
.mini-wave i:nth-child(3n) {
  height: 11px;
}
.mini-wave i:nth-child(5) {
  height: 20px;
}
.demo-spark {
  position: absolute;
  font-size: 51px;
  font-weight: 400;
  line-height: 1;
  color: #7c619c;
}
.spark-one {
  right: 0;
  top: 28px;
  transform: rotate(10deg);
}
.spark-two {
  left: 6px;
  top: 210px;
  font-size: 25px;
  transform: rotate(-15deg);
  color: #ab82aa;
}
.demo-footer {
  text-align: center;
  margin-top: 29px;
}
.demo-examples {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  border: 1px solid #d7cee1;
  border-radius: 30px;
  background: #f9f7fb80;
}
.demo-examples button {
  border: 0;
  border-radius: 30px;
  font-size: 10px;
  padding: 7px 15px;
  background: transparent;
  color: #766581;
  transition: background 0.2s;
  min-height: 38px;
}
.demo-examples button[aria-pressed="true"] {
  background: var(--white);
  color: var(--plum);
  box-shadow: 0 1px 4px #30263810;
  font-weight: 600;
}
.demo-footer p {
  font-size: 10px;
  color: #756581;
  margin-top: 8px;
}
.demo-stage[data-state="recording"] .mini-wave i {
  animation: wave 0.55s ease-in-out infinite alternate;
}
.demo-stage[data-state="recording"] .mini-wave i:nth-child(2n) {
  animation-delay: -0.3s;
}
.demo-stage[data-state="recording"] .mini-wave i:nth-child(3n) {
  animation-delay: -0.15s;
}
.demo-stage[data-state="recording"] .output-text {
  opacity: 0.35;
}
.demo-stage[data-state="processing"] .pill-indicator {
  background: #c1afe9;
}
.demo-stage[data-state="done"] .pill-indicator {
  background: #c9ddb6;
}
.demo-stage[data-state="done"] .output-text {
  animation: text-arrive 0.4s ease-out;
}
.demo-stage[data-state="recording"] .voice-note {
  box-shadow:
    0 5px 0 #dca38240,
    0 0 0 4px #e8af8f30;
}
.works-strip {
  display: flex;
  align-items: center;
  gap: 55px;
  padding-top: 20px;
  padding-bottom: 35px;
}
.works-strip > p {
  font-size: 11px;
  line-height: 1.7;
  white-space: nowrap;
  color: #6c5d76;
}
.works-strip strong {
  font-weight: 600;
  color: #62556e;
}
.app-names {
  border-top: 1px solid #d7d0de;
  width: 100%;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.app-names > span {
  font-size: 19px;
  letter-spacing: -0.7px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #62556e;
}
.app-symbol {
  font-size: 24px;
  line-height: 1;
}
.notion-symbol {
  font-family: Georgia, serif;
  border: 1.5px solid;
  border-radius: 3px;
  font-size: 18px;
  width: 22px;
  height: 24px;
  display: grid;
  place-items: center;
  box-shadow: -2px 2px 0 #62556e;
}
.mail-symbol {
  font-size: 27px;
}
.notes-symbol {
  font-size: 26px;
}
.app-names .and-more {
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 400;
  gap: 9px;
}
.and-more svg {
  width: 18px;
  height: 18px;
}
.section-space {
  padding-top: 104px;
  padding-bottom: 104px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 45px;
  margin-bottom: 39px;
}
h2 {
  font-size: clamp(36px, 4.3vw, 57px);
  line-height: 1.12;
  letter-spacing: -3px;
  font-weight: 800;
}
.section-heading p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 345px;
  color: var(--muted);
  padding-bottom: 4px;
}
.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.feature {
  border-radius: 23px;
  overflow: hidden;
  position: relative;
  min-height: 483px;
  display: flex;
  flex-direction: column;
}
.feature-hands {
  background: var(--plum);
  color: #f5edf9;
}
.feature-cleanup {
  background: #f0e6dc;
  color: #594236;
}
.feature-copy {
  padding: 37px 37px 0;
}
.feature-kicker {
  font-size: 11px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  opacity: 0.8;
}
h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.2;
}
.feature-copy p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 15px;
  max-width: 360px;
}
.feature-hands .feature-copy p {
  color: #c4b8cf;
}
.feature-cleanup .feature-copy p {
  color: #796051;
}
.keyboard-scene {
  height: 188px;
  margin-top: 3px;
  position: relative;
  overflow: hidden;
}
.keyboard-row {
  display: flex;
  gap: 9px;
  position: absolute;
  left: 170px;
  top: 51px;
  transform: rotate(-12deg);
  opacity: 0.45;
}
.small-key {
  background: #65576d;
  box-shadow:
    0 7px 0 #44374d,
    inset 0 1px 0 #9788a4;
  border-radius: 13px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 13px;
  min-width: 93px;
  height: 73px;
  font-size: 10px;
  color: #c5b8d2;
}
.option-key,
.command-key {
  flex-direction: column;
  align-items: end;
  font-size: 19px;
  line-height: 1.25;
}
.small-key small {
  font-size: 8px;
}
.feature-fn {
  position: absolute;
  left: 55px;
  top: 30px;
  width: 110px;
  height: 103px;
  background: #c2afe1;
  box-shadow:
    0 9px 0 #80649d,
    0 12px 0 #604c74,
    0 18px 20px #1e162647;
  border: 1px solid #e5d5f5;
  border-radius: 18px;
  transform: rotate(-12deg);
  color: #51396b;
}
.feature-fn > span {
  position: absolute;
  top: 8px;
  left: 13px;
  font-size: 17px;
}
.feature-fn b {
  position: absolute;
  right: 13px;
  bottom: 8px;
  font-size: 35px;
  font-weight: 600;
  line-height: 1;
}
.keyboard-caption {
  position: absolute;
  bottom: 8px;
  right: 36px;
  font-size: 10px;
  color: #c0afcf;
  display: flex;
  align-items: center;
  gap: 9px;
}
.small-wave {
  font-size: 19px;
  letter-spacing: 2px;
  color: #cdb8e8;
}
.feature-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 37px;
  border-top: 1px solid #ffffff13;
  font-size: 11px;
  color: #c2b3d0;
}
.feature-foot svg {
  width: 14px;
  height: 14px;
}
.feature-cleanup .feature-foot {
  color: #80624f;
  border-color: #dac7b5;
}
.cleanup-example {
  margin: 24px 37px 29px;
  background: #fffaf4;
  border: 1px solid #ead8c6;
  border-radius: 12px;
  padding: 15px 20px 18px;
  box-shadow: 0 7px 0 #e9dcd0;
  transform: rotate(-2deg);
}
.cleanup-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #856956;
  font-size: 11px;
  margin-bottom: 15px;
}
.toggle {
  width: 38px;
  height: 24px;
  background: #816591;
  border: 0;
  border-radius: 20px;
  padding: 3px;
  display: flex;
  align-items: center;
  position: relative;
}
.toggle:after {
  content: "";
  position: absolute;
  inset: -10px 0;
}
.toggle span {
  width: 18px;
  height: 18px;
  background: #fffefa;
  border-radius: 50%;
  transform: translateX(14px);
  transition: transform 0.2s;
}
.toggle[aria-checked="false"] {
  background: #a5978c;
}
.toggle[aria-checked="false"] span {
  transform: translateX(0);
}
#cleanup-output {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: -0.5px;
  min-height: 102px;
}
.cleanup-caption {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #896e59;
}
.cleanup-caption svg {
  width: 13px;
  height: 13px;
}
.tiny-spark {
  font-size: 17px;
  line-height: 1;
}
.dictionary-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 31px;
  padding: 28px 6px;
}
.dictionary-intro {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dictionary-icon {
  position: relative;
  background: #e5eacb;
  width: 65px;
  height: 65px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 29px;
  letter-spacing: -2px;
  font-weight: 600;
  color: #687248;
  transform: rotate(-5deg);
  flex-shrink: 0;
}
.dictionary-icon span {
  position: absolute;
  bottom: -2px;
  right: -6px;
  display: grid;
  place-items: center;
  font-size: 12px;
  letter-spacing: 0;
  background: #80955a;
  color: #fffefa;
  width: 22px;
  height: 22px;
  border: 3px solid var(--paper);
  border-radius: 50%;
}
.dictionary-intro h3 {
  font-size: 21px;
  letter-spacing: -0.7px;
}
.dictionary-intro p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 7px;
  line-height: 1.8;
}
.dictionary-example {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f0f0e9;
  border: 1px solid #e3e2d6;
  border-radius: 11px;
  padding: 16px 20px;
  font-size: 14px;
  min-width: 315px;
}
.dictionary-example > span:first-child {
  color: #68604d;
}
.dictionary-example > svg {
  width: 16px;
  height: 16px;
  color: #a09986;
}
.dictionary-example strong {
  font-weight: 600;
}
.dictionary-example .dictionary-saved {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  font-size: 10px;
  color: #66714f;
}
.dictionary-saved svg {
  width: 13px;
  height: 13px;
}
.how-section {
  background: #eeefe8;
}
.how-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 51px;
}
.section-kicker {
  font-size: 12px;
  color: #685d70;
  margin-bottom: 18px;
  font-weight: 600;
}
.how-heading > p {
  font-size: 14px;
  line-height: 1.9;
  color: #5c6250;
  max-width: 310px;
  margin-bottom: 4px;
}
.setup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.setup-steps li {
  border-top: 1px solid #d1d4c4;
  padding-top: 21px;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}
.step-number {
  font-size: 12px;
  color: #626d50;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #c9cdba;
  border-radius: 50%;
}
.step-top > svg {
  width: 25px;
  height: 25px;
  color: #7c8969;
}
.key-asterisks {
  color: #7c8969;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}
.setup-steps h3 {
  font-size: 21px;
  letter-spacing: -0.7px;
}
.setup-steps p {
  color: #606251;
  font-size: 14px;
  line-height: 1.9;
  margin-top: 14px;
  max-width: 305px;
}
.setup-steps a,
.step-note {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-weight: 600;
}
.setup-steps a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.setup-steps a svg {
  width: 14px;
  height: 14px;
}
.step-note {
  color: #606c50;
}
.cloud-note {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 45px;
  border-top: 1px solid #d1d4c4;
  padding-top: 21px;
  color: #5d634e;
}
.cloud-note svg {
  width: 20px;
  height: 20px;
}
.cloud-note p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 900px;
}
.cloud-note strong {
  color: #61674e;
  font-weight: 600;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 90px;
}
.faq-intro h2 {
  font-size: 48px;
}
.faq-intro > p:not(.section-kicker) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 23px;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 600;
}
.inline-link svg {
  width: 14px;
  height: 14px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  padding: 23px 0;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq-plus:before,
.faq-plus:after {
  content: "";
  position: absolute;
  background: #88798f;
  width: 12px;
  height: 1px;
  top: 6px;
  left: 1px;
  transition: transform 0.2s;
}
.faq-plus:after {
  transform: rotate(90deg);
}
details[open] .faq-plus:after {
  transform: rotate(0);
}
details p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  padding: 0 26px 23px 0;
  max-width: 550px;
}
.download-section {
  background: #d6c5eb;
  margin: 0 20px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.download-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 68px;
  position: relative;
}
.closing-wave {
  display: block;
  margin-bottom: 20px;
}
.closing-wave svg {
  width: 32px;
  height: 32px;
}
.download-inner h2 {
  font-size: 66px;
  letter-spacing: -3.5px;
}
.download-inner > div > p {
  color: #60456f;
  font-size: 14px;
  margin: 18px 0 25px;
}
.release-note {
  display: block;
  font-size: 12px;
  color: #5c416e;
  margin-top: 14px;
}
.install-callout {
  background: #e6d9f290;
  padding: 30px;
  border-radius: 17px;
  transform: rotate(2deg);
  border: 1px solid #e9dff2;
}
.install-symbol {
  font-size: 27px;
  color: #9b7bb6;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.install-callout h3 {
  font-size: 22px;
  letter-spacing: -0.6px;
}
.install-callout p {
  font-size: 14px;
  line-height: 1.8;
  color: #60456f;
  margin-top: 14px;
}
.install-callout strong {
  font-weight: 600;
  color: #5c4372;
}
.install-callout a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 18px;
}
.install-callout a svg {
  width: 14px;
  height: 14px;
}
.site-footer {
  padding-top: 46px;
  padding-bottom: 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer-top .brand {
  font-size: 17px;
  letter-spacing: -0.7px;
}
.footer-top .brand svg {
  width: 24px;
  height: 24px;
}
.footer-top p {
  font-size: 11px;
  color: #716179;
}
.footer-top > div {
  margin-left: auto;
  display: flex;
  gap: 25px;
  font-size: 11px;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 31px;
  padding-top: 19px;
  border-top: 1px solid #e7e3ea;
  font-size: 10px;
  color: #716179;
}
@keyframes wave {
  to {
    transform: scaleY(0.35);
  }
}
@keyframes text-arrive {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1440px) {
  .wrap {
    max-width: 1376px;
    padding-left: 56px;
    padding-right: 56px;
  }
  .hero {
    min-height: 685px;
    padding-top: 35px;
    padding-bottom: 64px;
  }
  .hero h1 {
    font-size: 103px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 430px;
  }
  .hero-demo {
    margin-left: 5px;
  }
  .demo-stage {
    height: 490px;
  }
  .message-window {
    top: 125px;
    width: calc(100% - 100px);
  }
  .hero-actions {
    gap: 12px;
  }
  .output-text {
    font-size: 14px;
  }
  .fn-key {
    left: 25px;
  }
  .voice-note {
    left: 80px;
    top: 15px;
  }
  .key-hint {
    left: 190px;
    bottom: 2px;
  }
  .works-strip {
    padding-bottom: 42px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    padding-left: 35px;
    padding-right: 35px;
  }
  .hero h1 {
    font-size: 72px;
    letter-spacing: -4.5px;
  }
  .hero {
    gap: 5px;
    padding-top: 15px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding: 0 18px;
    font-size: 12px;
  }
  .text-button {
    font-size: 11px;
    gap: 6px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 345px;
  }
  .demo-stage {
    height: 460px;
  }
  .message-window {
    left: 62px;
    width: calc(100% - 57px);
    top: 129px;
  }
  .voice-note {
    left: 46px;
    max-width: 310px;
    top: 28px;
  }
  .dictation-pill {
    right: -4px;
    bottom: 46px;
  }
  .fn-key {
    width: 138px;
    height: 145px;
    left: 0;
  }
  .key-label {
    font-size: 55px;
  }
  .key-hint {
    left: 139px;
    bottom: 0;
    font-size: 9px;
  }
  .demo-spark.spark-one {
    right: -5px;
    top: 43px;
    font-size: 39px;
  }
  .works-strip {
    gap: 35px;
  }
  .app-names > span {
    font-size: 16px;
  }
  .app-names .and-more {
    font-size: 10px;
  }
  .feature-copy {
    padding-left: 28px;
    padding-right: 28px;
  }
  .feature-copy h3 {
    font-size: 27px;
  }
  .cleanup-example {
    margin-left: 28px;
    margin-right: 28px;
  }
  .feature-foot {
    padding-left: 28px;
    padding-right: 28px;
  }
  .dictionary-intro {
    gap: 15px;
  }
  .dictionary-example {
    min-width: 280px;
    gap: 13px;
  }
  .faq-section {
    gap: 55px;
  }
  .download-inner {
    gap: 50px;
  }
  .download-inner h2 {
    font-size: 56px;
  }
  .install-callout {
    padding: 25px;
  }
  .footer-top {
    gap: 23px;
  }
  .footer-top > div {
    gap: 15px;
  }
}
@media (max-width: 840px) {
  .site-header {
    height: 85px;
  }
  .site-header nav {
    gap: 20px;
    font-size: 11px;
  }
  .site-header nav a:first-child {
    display: none;
  }
  .brand {
    font-size: 20px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 555px;
    padding-top: 23px;
    padding-bottom: 35px;
  }
  .hero h1 {
    font-size: 60px;
    letter-spacing: -3.5px;
  }
  .intro {
    font-size: 10px;
    gap: 7px;
    margin-bottom: 21px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.9;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 9px;
    margin-top: 23px;
  }
  .hero-actions .button {
    font-size: 12px;
    min-height: 48px;
    padding: 0 17px;
  }
  .hero-actions .text-button {
    font-size: 10px;
  }
  .download-meta {
    font-size: 12px;
  }
  .install-note {
    font-size: 11px;
  }
  .demo-stage {
    height: 407px;
  }
  .message-window {
    left: 34px;
    top: 133px;
    width: calc(100% - 22px);
  }
  .voice-note {
    left: 20px;
    max-width: 275px;
    top: 36px;
    padding: 12px 15px;
  }
  .voice-note p {
    font-size: 10px;
  }
  .voice-note svg {
    width: 16px;
    height: 16px;
  }
  .window-top {
    padding: 11px 10px;
    font-size: 8px;
  }
  .window-body {
    padding: 13px 12px 14px;
    column-gap: 7px;
    grid-template-columns: 25px 1fr;
  }
  .message-avatar {
    width: 24px;
    height: 24px;
    font-size: 7px;
  }
  .message-context {
    font-size: 9px;
    padding-bottom: 14px;
  }
  .context-label {
    display: none;
  }
  .output-text {
    font-size: 11px;
    min-height: 60px;
  }
  .message-author {
    font-size: 9px;
  }
  .composer-bottom {
    font-size: 7px;
    margin: 0 10px 10px;
    gap: 6px;
  }
  .fn-key {
    width: 110px;
    height: 116px;
    bottom: 0;
    left: -3px;
    border-radius: 24px;
    padding: 5px 7px 12px;
  }
  .key-face {
    border-radius: 18px;
  }
  .key-label {
    font-size: 44px;
    right: 13px;
  }
  .key-globe {
    font-size: 19px;
    left: 11px;
    top: 6px;
  }
  .dictation-pill {
    bottom: 3px;
    right: -7px;
    min-width: 169px;
    font-size: 8px;
    padding: 10px 12px;
    gap: 7px;
  }
  .mini-wave {
    gap: 2px;
  }
  .key-hint {
    display: none;
  }
  .demo-spark.spark-one {
    right: 0;
    top: 11px;
    font-size: 34px;
  }
  .spark-two {
    left: -8px;
    top: 181px;
    font-size: 21px;
  }
  .demo-footer {
    margin-top: 39px;
  }
  .demo-examples button {
    font-size: 9px;
    padding: 6px 11px;
  }
  .demo-footer p {
    font-size: 9px;
  }
  .works-strip {
    gap: 24px;
  }
  .app-names {
    gap: 17px;
  }
  .app-names > span {
    font-size: 14px;
    gap: 6px;
  }
  .app-names .and-more {
    display: none;
  }
  .works-strip > p {
    font-size: 10px;
  }
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading p {
    max-width: 280px;
    font-size: 12px;
  }
  h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }
  .feature-pair {
    gap: 17px;
  }
  .feature-copy {
    padding: 28px 24px 0;
  }
  .feature-copy h3 {
    font-size: 24px;
  }
  .feature-copy p {
    font-size: 12px;
  }
  .feature-foot {
    padding: 13px 24px;
    font-size: 9px;
    gap: 6px;
  }
  .cleanup-example {
    margin: 25px 24px;
  }
  .cleanup-example #cleanup-output {
    font-size: 18px;
    min-height: 110px;
  }
  .cleanup-caption {
    font-size: 9px;
  }
  .feature-fn {
    left: 27px;
  }
  .keyboard-row {
    left: 145px;
  }
  .keyboard-caption {
    right: 24px;
    font-size: 9px;
  }
  .dictionary-intro p {
    font-size: 11px;
  }
  .dictionary-intro h3 {
    font-size: 17px;
  }
  .dictionary-icon {
    width: 51px;
    height: 51px;
    font-size: 24px;
  }
  .dictionary-example {
    min-width: 235px;
    font-size: 12px;
    padding: 14px;
  }
  .dictionary-saved {
    font-size: 9px !important;
  }
  .setup-steps {
    gap: 24px;
  }
  .setup-steps h3 {
    font-size: 18px;
  }
  .setup-steps p {
    font-size: 12px;
  }
  .how-heading > p {
    font-size: 13px;
  }
  .faq-section {
    gap: 35px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq-intro h2 {
    font-size: 40px;
  }
  summary {
    font-size: 12px;
    padding: 21px 0;
  }
  .download-inner h2 {
    font-size: 49px;
  }
  .download-inner {
    gap: 30px;
  }
  .install-callout {
    padding: 22px;
  }
  .install-callout h3 {
    font-size: 19px;
  }
  .install-callout p {
    font-size: 13px;
  }
  .footer-top p {
    display: none;
  }
  .footer-bottom {
    font-size: 11px;
    gap: 30px;
  }
}
@media (max-width: 650px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-surface {
    border-radius: 0 0 27px 27px;
  }
  .site-header {
    height: 81px;
    gap: 12px;
  }
  .brand {
    font-size: 19px;
    gap: 7px;
    letter-spacing: -0.8px;
  }
  .brand svg {
    width: 27px;
    height: 27px;
  }
  .site-header nav {
    display: none;
  }
  .header-community {
    font-size: 10px;
    padding: 0 12px;
    min-height: 44px;
    gap: 7px;
  }
  .header-community svg {
    width: 15px;
    height: 15px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 25px;
    padding-bottom: 27px;
    gap: 14px;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .intro {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(59px, 13.5vw, 85px);
    line-height: 1.045;
    letter-spacing: -3.9px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 19px;
    max-width: 350px;
  }
  .hero-actions {
    margin-top: 23px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    font-size: 12px;
    min-height: 49px;
    padding: 0 16px;
    gap: 8px;
  }
  .hero-actions .button svg {
    width: 17px;
    height: 17px;
  }
  .hero-actions .text-button {
    font-size: 10px;
    gap: 7px;
  }
  .play-circle {
    width: 25px;
    height: 25px;
  }
  .download-meta {
    font-size: 12px;
    margin-top: 13px;
  }
  .install-note {
    font-size: 11px;
    margin-top: 5px;
  }
  .hero-demo {
    margin-left: 0;
    width: 100%;
    max-width: 430px;
    justify-self: center;
    margin-top: 22px;
  }
  .demo-stage {
    height: 413px;
  }
  .demo-backdrop {
    inset: 20px 17px 25px 9px;
    border-radius: 47%;
  }
  .voice-note {
    top: 15px;
    left: 25px;
    max-width: calc(100% - 50px);
    padding: 14px 17px;
  }
  .voice-note p {
    font-size: 11px;
  }
  .message-window {
    top: 124px;
    left: 24px;
    width: calc(100% - 28px);
    min-height: 219px;
  }
  .window-top {
    font-size: 8px;
    padding: 12px;
  }
  .window-body {
    padding: 15px;
    grid-template-columns: 27px 1fr;
  }
  .message-context {
    font-size: 10px;
    padding-bottom: 14px;
  }
  .message-avatar {
    width: 25px;
    height: 25px;
  }
  .output-text {
    font-size: 12px;
    min-height: 55px;
  }
  .message-author {
    font-size: 9px;
  }
  .composer-bottom {
    font-size: 8px;
    margin: 0 12px 12px;
    padding: 8px;
  }
  .fn-key {
    left: 4px;
    bottom: -2px;
    width: 120px;
    height: 122px;
  }
  .key-label {
    font-size: 45px;
  }
  .dictation-pill {
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    min-width: 181px;
    font-size: 8px;
  }
  .demo-spark.spark-one {
    right: -3px;
    top: 83px;
    font-size: 34px;
  }
  .spark-two {
    left: -9px;
    top: 149px;
    font-size: 22px;
  }
  .demo-footer {
    margin-top: 36px;
  }
  .demo-examples button {
    font-size: 10px;
    padding: 7px 13px;
    min-height: 44px;
  }
  .demo-footer p {
    font-size: 9px;
    margin-top: 9px;
  }
  .works-strip {
    display: block;
    text-align: center;
    padding-top: 19px;
    padding-bottom: 27px;
  }
  .works-strip > p {
    font-size: 11px;
    display: flex;
    gap: 4px;
    justify-content: center;
  }
  .works-strip > p br {
    display: none;
  }
  .app-names {
    border: 0;
    padding-top: 18px;
    gap: 12px;
    justify-content: space-around;
  }
  .app-names > span {
    font-size: 15px;
    gap: 6px;
  }
  .app-symbol {
    font-size: 21px;
  }
  .notion-symbol {
    font-size: 15px;
    width: 18px;
    height: 20px;
  }
  .mail-symbol {
    font-size: 23px;
  }
  .notes-symbol {
    font-size: 24px;
  }
  .section-space {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .section-heading p {
    font-size: 13px;
    max-width: 340px;
    margin-top: 16px;
  }
  h2 {
    font-size: 38px;
    letter-spacing: -2px;
  }
  .feature-pair {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature {
    min-height: 429px;
    border-radius: 18px;
  }
  .feature-copy {
    padding: 28px 28px 0;
  }
  .feature-kicker {
    font-size: 11px;
    margin-bottom: 13px;
  }
  .feature-copy h3 {
    font-size: 28px;
  }
  .feature-copy p {
    font-size: 14px;
    max-width: 335px;
  }
  .keyboard-scene {
    height: 170px;
    margin-top: 10px;
  }
  .feature-fn {
    left: 42px;
    top: 24px;
  }
  .keyboard-row {
    left: 168px;
    top: 48px;
  }
  .keyboard-caption {
    right: 28px;
    bottom: 8px;
    font-size: 10px;
  }
  .feature-foot {
    font-size: 10px;
    padding: 14px 28px;
  }
  .cleanup-example {
    margin: 27px 28px 29px;
    padding: 17px 21px;
  }
  .cleanup-example #cleanup-output {
    min-height: 85px;
    font-size: 21px;
  }
  .cleanup-caption {
    font-size: 10px;
  }
  .dictionary-feature {
    display: block;
    margin-top: 25px;
    padding: 28px 0;
  }
  .dictionary-intro {
    gap: 17px;
  }
  .dictionary-intro h3 {
    font-size: 19px;
  }
  .dictionary-intro p {
    font-size: 12px;
    line-height: 1.8;
  }
  .dictionary-intro p br {
    display: none;
  }
  .dictionary-icon {
    width: 52px;
    height: 52px;
  }
  .dictionary-example {
    margin-top: 24px;
    width: 100%;
    font-size: 14px;
    padding: 16px 19px;
    gap: 23px;
  }
  .dictionary-example .dictionary-saved {
    font-size: 10px !important;
  }
  .how-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-kicker {
    font-size: 11px;
    margin-bottom: 15px;
  }
  .how-heading > p {
    font-size: 13px;
    margin-top: 20px;
    max-width: 310px;
  }
  .setup-steps {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .setup-steps li {
    padding-top: 18px;
  }
  .step-top {
    margin-bottom: 17px;
  }
  .setup-steps h3 {
    font-size: 22px;
  }
  .setup-steps p {
    font-size: 14px;
    max-width: 380px;
    margin-top: 12px;
  }
  .setup-steps a,
  .step-note {
    font-size: 12px;
    margin-top: 15px;
  }
  .cloud-note {
    margin-top: 32px;
    gap: 13px;
    align-items: flex-start;
  }
  .cloud-note p {
    font-size: 12px;
    line-height: 1.9;
  }
  .cloud-note svg {
    margin-top: 3px;
  }
  .faq-section {
    display: block;
  }
  .faq-intro h2 {
    font-size: 38px;
  }
  .faq-intro h2 br {
    display: none;
  }
  .faq-intro > p:not(.section-kicker) {
    font-size: 12px;
    margin-top: 17px;
  }
  .inline-link {
    font-size: 12px;
  }
  .faq-list {
    margin-top: 31px;
  }
  summary {
    font-size: 13px;
    padding: 21px 0;
    gap: 12px;
  }
  details p {
    font-size: 13px;
    padding-right: 15px;
  }
  .download-section {
    margin: 0 12px;
    border-radius: 22px;
  }
  .download-inner {
    grid-template-columns: 1fr;
    gap: 37px;
    padding: 37px 26px;
  }
  .closing-wave {
    margin-bottom: 20px;
  }
  .closing-wave svg {
    width: 29px;
    height: 29px;
  }
  .download-inner h2 {
    font-size: clamp(36px, 10.7vw, 49px);
    letter-spacing: -2.5px;
  }
  .download-inner > div > p {
    font-size: 13px;
    margin-top: 17px;
    margin-bottom: 23px;
  }
  .download-inner .button {
    min-height: 50px;
    font-size: 13px;
  }
  .release-note {
    font-size: 11px;
  }
  .install-callout {
    padding: 24px;
    transform: rotate(1deg);
  }
  .install-callout h3 {
    font-size: 21px;
  }
  .install-callout p {
    font-size: 14px;
  }
  .install-callout a {
    font-size: 11px;
  }
  .install-symbol {
    margin-bottom: 13px;
  }
  .site-footer {
    padding-top: 35px;
    padding-bottom: 25px;
  }
  .footer-top {
    align-items: start;
    flex-wrap: wrap;
    gap: 23px;
  }
  .footer-top .brand {
    font-size: 17px;
  }
  .footer-top > div {
    width: 100%;
    margin-left: 0;
    gap: 25px;
    font-size: 12px;
  }
  .footer-bottom {
    display: block;
    margin-top: 25px;
    font-size: 11px;
    line-height: 1.9;
  }
  .footer-bottom span {
    display: block;
  }
  .footer-bottom span + span {
    margin-top: 5px;
  }
}
@media (max-width: 360px) {
  .wrap {
    padding-left: 19px;
    padding-right: 19px;
  }
  .brand {
    font-size: 17px;
  }
  .hero h1 {
    font-size: clamp(48px, 15vw, 54px);
    letter-spacing: -3.1px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 0 13px;
  }
  .text-button .play-circle {
    display: none;
  }
  .dictation-pill {
    min-width: 161px;
    padding: 11px;
    font-size: 7px;
    gap: 6px;
  }
  .fn-key {
    width: 109px;
    height: 114px;
  }
  .demo-stage {
    height: 442px;
  }
  .demo-examples button {
    padding: 7px 11px;
  }
  .feature-copy {
    padding-left: 24px;
    padding-right: 24px;
  }
  .cleanup-example {
    margin-left: 24px;
    margin-right: 24px;
  }
  .download-inner h2 {
    font-size: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .fn-key:hover,
  .fn-key:active {
    transform: rotate(-11deg);
  }
}
