:root {
  color-scheme: light dark;
  --paper: #f5f6f8;
  --ink: #20252b;
  --muted: #656d79;
  --line: #dce0e6;
  --accent: #365bd8;
  --button-ink: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  background: var(--paper);
  color: var(--ink);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  font: inherit;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
.masthead,
footer {
  max-width: 1180px;
  margin: auto;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -1px;
  text-decoration: none;
}
.mark {
  width: 22px;
  height: 23px;
  border: 2px solid currentColor;
  border-radius: 4px;
  transform: perspective(35px) rotateY(-24deg);
}
.platform {
  color: var(--muted);
  font-size: 13px;
}
.hero {
  text-align: center;
  padding: 64px 24px 0;
  overflow: hidden;
}
.eyebrow {
  font:
    10px ui-monospace,
    "SFMono-Regular",
    monospace;
  letter-spacing: 2px;
  margin: 0 0 23px;
  color: var(--muted);
}
h1 {
  margin: 0;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.065em;
  font-weight: 600;
}
h1 span {
  color: var(--muted);
}
.intro {
  font-size: 17px;
  line-height: 1.6;
  margin: 25px auto;
  color: var(--muted);
}
.download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 12px;
  color: var(--button-ink);
  background: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 550;
  transition:
    transform 150ms,
    opacity 150ms;
}
.download:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}
.requirements {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
}
.preview {
  max-width: 820px;
  margin: 57px auto 0;
}
.demo-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #15171c;
  box-shadow: 0 20px 40px #00000016;
}
figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  font-size: 10px;
  color: var(--muted);
}
.details {
  max-width: 890px;
  margin: 66px auto 44px;
  padding: 38px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}
h2 {
  font-size: 16px;
  font-weight: 550;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
}
.details p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 13px;
}
.details .small {
  font-size: 11px;
}
footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.footer-note {
  margin: 0;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #111316;
    --ink: #e9ecf1;
    --muted: #a2a9b4;
    --line: #30343b;
    --accent: #9cacff;
    --button-ink: #1d222a;
  }
}
@media (max-width: 950px) {
  .details {
    margin-left: 32px;
    margin-right: 32px;
    gap: 35px;
  }
}
@media (max-width: 600px) {
  .masthead {
    padding: 24px;
  }
  .platform {
    font-size: 10px;
  }
  .hero {
    padding: 42px 16px 0;
  }
  .intro {
    font-size: 14px;
    max-width: 310px;
  }
  .wide-break {
    display: none;
  }
  .preview {
    margin-top: 40px;
  }
  .details {
    grid-template-columns: 1fr;
    margin: 44px 24px 24px;
    gap: 24px;
    padding-top: 28px;
  }
  footer {
    padding: 25px 24px;
    gap: 18px;
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  .download {
    transition: none;
  }
  .download:hover {
    transform: none;
  }
}
