@font-face {
  font-family: Keydoze Display;
  src: url("/assets/display.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Keydoze Display;
  src: url("/assets/display-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Keydoze Sans;
  src: url("/assets/body.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Keydoze Sans;
  src: url("/assets/body-semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f8f8f2;
  --sage: #edf1e9;
  --ink: #263e33;
  --green: #16654c;
  --muted: #59675b;
  --line: #cdd6c9;
  --deep: #233f34;
  --on-deep: #f3f4e9;
  --deep-muted: #c4d2c2;
  --key: #d6e1cd;
  --key-edge: #a2b69a;
  --display: "Keydoze Display", Georgia, serif;
  --body: "Keydoze Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--body);
  font-synthesis: none;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: auto;
  scroll-padding-top: 0;
  scrollbar-color: var(--muted) var(--paper);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 6px;
}
::selection {
  background: var(--green);
  color: var(--paper);
}
.quiet-section ::selection {
  background: var(--key);
  color: var(--deep);
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1200px, calc(100% - 112px));
  margin-inline: auto;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.skip-link {
  position: absolute;
  left: 24px;
  top: -100px;
  background: var(--paper);
  padding: 12px 20px;
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}
.intro {
  background: var(--sage);
}
.site-header {
  min-height: 112px;
  padding-block: 22px;
  flex-wrap: wrap;
  gap: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wordmark {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.wordmark img {
  width: 42px;
  height: 42px;
}
.site-header nav {
  display: flex;
  gap: 38px;
  align-items: center;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link .icon {
  transition: transform 0.3s var(--ease);
}
.text-link:hover .icon {
  transform: translate(2px, -2px);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  padding-top: 14px;
}
.hero-copy {
  padding: 12px 0 32px;
  position: relative;
  z-index: 1;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.07;
}
h1 {
  font-size: clamp(56px, 6.3vw, 88px);
  letter-spacing: -0.04em;
  white-space: normal;
}
em {
  font-weight: 400;
}
h1 em,
h2 em {
  color: var(--green);
}
.hero-description {
  font-size: 21px;
  line-height: 1.55;
  max-width: 400px;
  margin: 28px 0 29px;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 13px 24px;
  border-radius: 7px;
  background: var(--green);
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition:
    background 0.25s,
    transform 0.3s var(--ease);
}
.button:hover {
  background: var(--deep);
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0);
}
.availability {
  font-size: 15px;
  line-height: 1.65;
  margin: 17px 0 0;
  color: var(--muted);
}
.availability > span:first-child {
  padding-inline: 5px;
}
.release-label {
  font-size: 14px;
}
.hero-product {
  margin: -14px -34px 0 -20px;
  position: relative;
  align-self: center;
}
.app-screenshot {
  width: 100%;
  height: auto;
  animation: arrive 1.2s var(--ease) both;
}
.hero-footnote {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line);
  padding: 22px 0 26px;
  font-size: 15px;
  color: var(--muted);
  margin-top: 20px;
}
.hero-footnote > a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  text-decoration: none;
}
.pause-mark {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.pause-mark i {
  height: 15px;
  width: 5px;
  border-radius: 1px;
  background: currentColor;
  display: block;
}
.how-section {
  padding-block: 98px 85px;
}
h2 {
  font-size: clamp(40px, 4.8vw, 62px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
  margin: 48px 0 30px;
}
.steps li {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.step-number {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--green);
}
h3 {
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
}
.steps p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 300px;
}
.coverage-note {
  max-width: 72ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 32px 0 0;
}
.coverage-note a {
  white-space: nowrap;
  margin-left: 4px;
}
.quiet-section {
  background: var(--deep);
  color: var(--on-deep);
  overflow: hidden;
}
.quiet-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  padding-block: 76px;
}
.quiet-copy h2 em {
  color: var(--deep-muted);
}
.quiet-copy > p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--deep-muted);
  max-width: 440px;
  margin: 25px 0 25px;
}
.quiet-section a:focus-visible {
  outline-color: var(--on-deep);
}
.pause-object {
  justify-self: center;
  text-align: center;
  padding: 0 0 8px;
}
.pause-key {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  width: 174px;
  height: 174px;
  background: var(--key);
  border-radius: 28px;
  box-shadow:
    0 12px 0 var(--key-edge),
    0 30px 40px rgba(0, 0, 0, 0.2);
  transform: rotate(-10deg);
  transition: transform 0.8s var(--ease);
  margin: 0 auto;
}
.pause-key > span {
  height: 67px;
  width: 23px;
  border-radius: 5px;
  background: var(--green);
}
.quiet-section.is-visible .pause-key {
  animation: key-settle 1.4s var(--ease) both;
}
.get-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 110px;
  padding-block: 96px 66px;
}
.get-intro > p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 420px;
  margin: 26px 0 22px;
}
.creator {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.creator:hover {
  text-decoration: underline;
}
.release {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  min-width: 0;
}
.release-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
}
.release-heading h3 {
  font-size: 24px;
  margin: 0;
}
.release > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 15px 0 23px;
}
.release p.requirements {
  font-size: 14px;
  line-height: 1.55;
  margin: 15px 0 18px;
}
.release .button {
  gap: 20px;
}
.questions {
  padding-bottom: 82px;
}
.questions h2 {
  font-size: 32px;
  margin-bottom: 24px;
}
.questions details {
  border-top: 1px solid var(--line);
}
.questions details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 24px;
  cursor: pointer;
  padding: 22px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary .icon {
  transition: transform 0.25s var(--ease);
}
details[open] summary .icon {
  transform: rotate(45deg);
}
details > p {
  margin: 0 0 24px;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 32px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.site-footer .wordmark {
  font-size: 23px;
  gap: 12px;
}
.site-footer nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 14px;
}
.site-footer nav a {
  text-decoration: none;
  white-space: nowrap;
}
.site-footer nav a:hover {
  text-decoration: underline;
}
@keyframes arrive {
  from {
    opacity: 0.5;
    transform: translateY(16px) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
@keyframes key-settle {
  from {
    transform: translateY(-18px) rotate(-16deg);
  }
  to {
    transform: translateY(0) rotate(-10deg);
  }
}
@media (min-width: 1550px) {
  .wrap {
    width: min(1320px, calc(100% - 160px));
  }
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }
  .hero-product {
    margin-right: -16px;
  }
  .hero-copy {
    padding-left: 16px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .site-header {
    min-height: 94px;
  }
  h1 {
    font-size: clamp(48px, 6.4vw, 68px);
  }
  .hero-description {
    font-size: 19px;
  }
  .hero-product {
    margin-right: -20px;
  }
  .steps {
    gap: 28px;
  }
  .get-section {
    gap: 55px;
  }
  .site-footer {
    gap: 22px;
  }
  .site-footer nav {
    gap: 17px;
  }
}
@media (min-width: 761px) {
  :root {
    --hero-header-height: clamp(86px, 12svh, 112px);
  }
  .site-header {
    min-height: var(--hero-header-height);
  }
  .hero {
    min-height: calc(100svh - var(--hero-header-height));
    grid-template-rows: 1fr auto;
  }
  .app-screenshot {
    max-height: max(280px, calc(100svh - var(--hero-header-height) - 112px));
    object-fit: contain;
  }
}
@media (min-width: 761px) and (max-height: 800px) {
  h1 {
    font-size: clamp(48px, min(6.3vw, 10svh), 80px);
  }
  .hero-copy {
    padding-block: 8px 20px;
  }
  .hero-description {
    margin-block: 20px;
  }
  .hero-footnote {
    margin-top: 12px;
    padding-block: 18px 22px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 44px);
  }
  .site-header {
    min-height: 86px;
  }
  .site-header nav {
    gap: 20px;
  }
  .wordmark {
    font-size: 25px;
  }
  .wordmark img {
    width: 36px;
    height: 36px;
  }
  .how-link {
    display: none;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    align-items: stretch;
  }
  .hero-copy {
    padding: 0;
    max-width: 520px;
  }
  h1 {
    font-size: clamp(46px, 9.2vw, 70px);
    line-height: 1.08;
  }
  .hero-description {
    font-size: 19px;
    max-width: 390px;
    margin: 24px 0;
  }
  .button {
    min-height: 52px;
  }
  .availability {
    margin-top: 14px;
    font-size: 14px;
  }
  .release-label {
    font-size: 13px;
  }
  .hero-product {
    width: min(100%, 470px);
    align-self: center;
    margin: 18px 0 0;
  }
  .hero-footnote {
    margin-top: 8px;
    font-size: 13px;
    padding-block: 15px 17px;
    gap: 10px;
  }
  .hero-footnote .pause-mark {
    gap: 3px;
  }
  .hero-footnote .pause-mark i {
    height: 12px;
    width: 4px;
  }
  .how-section {
    padding-block: 88px 80px;
  }
  h2 {
    font-size: 44px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 40px 0 32px;
  }
  .steps li {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 14px;
    padding-top: 22px;
  }
  .step-number {
    grid-row: 1/3;
    padding-top: 4px;
  }
  .steps h3 {
    margin: 0 0 8px;
    font-size: 22px;
  }
  .steps p {
    max-width: 430px;
  }
  .coverage-note {
    margin-top: 25px;
    font-size: 13px;
  }
  .coverage-note a {
    margin-left: 0;
  }
  .quiet-inner {
    grid-template-columns: 1fr;
    padding-block: 80px;
    gap: 52px;
  }
  .quiet-copy > p {
    font-size: 18px;
    margin-block: 23px;
  }
  .pause-object {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-self: start;
    padding: 0;
  }
  .pause-key {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    gap: 11px;
    box-shadow:
      0 7px 0 var(--key-edge),
      0 20px 30px rgba(0, 0, 0, 0.18);
    margin: 0 0 10px 8px;
  }
  .pause-key > span {
    height: 38px;
    width: 13px;
    border-radius: 3px;
  }
  .get-section {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-block: 88px 88px;
  }
  .get-intro > p {
    font-size: 18px;
    margin-top: 23px;
  }
  .release {
    padding-top: 23px;
  }
  .release-heading h3 {
    font-size: 23px;
  }
  .release > p {
    font-size: 17px;
  }
  .questions {
    padding-bottom: 80px;
  }
  summary {
    font-size: 17px;
    padding-block: 21px;
  }
  details > p {
    font-size: 16px;
  }
  .site-footer {
    padding-block: 27px 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .site-footer nav {
    margin-left: 0;
    gap: 26px;
    margin-top: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .app-screenshot {
    transform: none;
  }
  .button:hover {
    transform: none;
  }
}
