@font-face {
  font-family: "Inter";
  src: url(fonts/Inter-Variable.woff2) format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --pg: #000000;
  --pg-2: #0A0A0A;
  --card: #101010;
  --card-2: #161616;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .18);
  --tx: #FFFFFF;
  --tx-2: #A3A3A3;
  --tx-3: #6E6E6E;
  --glow: #3485FF;
  --glow-2: #79AEFF;
  --glow-dim: rgba(52, 133, 255, .14);
  --glow-line: rgba(52, 133, 255, .32);
  --hl-sentence: rgba(52, 133, 255, .17);
  --hl-word: #3485FF;
  --sans:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --ease: cubic-bezier(.22, .68, .28, 1);
}
* {
  box-sizing: border-box;
}
html {
  background: var(--pg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--pg);
  color: var(--tx-2);
  font: 400 16px/1.6 var(--sans);
  font-feature-settings: "cv05" 1, "ss03" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
}
h1,
h2,
h3 {
  margin: 0;
  color: var(--tx);
  font-weight: 400;
}
p {
  margin: 0;
}
:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--glow-2);
  outline-offset: 3px;
  border-radius: 6px;
}
.wrap {
  width: 100%;
  max-width: 1680px;
  padding-inline: clamp(20px, 4.4vw, 80px);
  margin-inline: auto;
}
.display {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -.022em;
  line-height: 1.08;
  color: var(--tx);
}
.display em {
  font-style: normal;
  color: var(--glow-2);
}
.label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tx-3);
}
.label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--line-2);
}
.label.dot::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 0 4px var(--glow-dim);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 600 15.5px/1 var(--sans);
  letter-spacing: -.005em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background .16s var(--ease),
    border-color .16s var(--ease),
    transform .16s var(--ease),
    box-shadow .16s var(--ease);
}
.btn:active {
  transform: translateY(1px);
}
.btn-sm {
  height: 42px;
  padding: 0 20px;
  font-size: 14px;
}
.btn-lg {
  height: 58px;
  padding: 0 34px;
  font-size: 16.5px;
}
.btn-primary {
  background: #fff;
  color: #000;
}
.btn-primary:hover {
  background: #E4E4E4;
}
.btn-ghost {
  background: transparent;
  color: var(--tx);
  border-color: rgba(255, 255, 255, .24);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .45);
}
.btn[aria-disabled=true] {
  opacity: .42;
  pointer-events: none;
  box-shadow: none;
}
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.site-head.is-stuck {
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 66px;
}
.nav .spacer {
  flex: 1;
}
.brand {
  display: inline-flex;
  align-items: center;
  margin-right: 18px;
}
.brand img {
  display: block;
  height: 40px;
  width: auto;
}
.nav .link {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--tx-2);
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav .link:hover {
  color: var(--tx);
  background: rgba(255, 255, 255, .05);
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 66px);
  min-height: calc(100svh - 66px);
  padding: 56px 0;
}
.hero > .wrap {
  width: 100%;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 72px;
  align-items: center;
}
.hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(40px, 4.8vw, 62px);
}
.hero .lead {
  max-width: 30em;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--tx-2);
}
.hero .cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero .fine {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--tx-3);
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 30px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.platforms li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tx-2);
}
.platforms svg,
.platforms img {
  width: 15px;
  height: 15px;
  flex: none;
  opacity: .75;
}
.platforms .soon {
  font-size: 10.5px;
  letter-spacing: .06em;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--tx-3);
}
.demo {
  position: relative;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 20px 22px 18px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 255, 255, .02) inset;
}
.demo-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--tx-3);
}
.demo-head .live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, .16);
}
.demo-head .title {
  color: var(--tx);
  font-weight: 600;
  font-size: 13px;
}
.demo-head .spacer {
  flex: 1;
}
.demo-text {
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--tx-2);
}
.demo-text .p {
  display: block;
}
.demo-text .p + .p {
  margin-top: 12px;
}
.demo-text .s {
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
.demo-text .s.is-done {
  color: var(--tx-3);
}
.demo-text .s.is-cur {
  color: var(--tx);
  background: var(--hl-sentence);
  border-radius: 5px;
  padding: 2px 4px;
  margin: 0 -4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.demo-text .w.is-word {
  background: color-mix(in srgb, var(--hl-word) 16%, transparent);
  color: inherit;
  border-radius: 2px 2px 0 0;
  padding: 1px 3px;
  margin: 0 -3px;
  box-shadow: inset 0 -2px 0 0 var(--hl-word);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.demo-bar {
  height: 3px;
  margin-top: 18px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}
.demo-bar i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: var(--glow);
  transition: width .22s linear;
}
.demo-ctl {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.demo-voice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 4px;
}
.demo-disc {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(52, 133, 255, .16);
  color: var(--glow-2);
  font-weight: 700;
  font-size: 15px;
  flex: none;
}
.demo-wave {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--glow);
  border: 2px solid var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.demo-wave b {
  display: block;
  width: 1.5px;
  height: 4px;
  border-radius: 1px;
  background: #fff;
  animation: demo-wave .9s ease-in-out infinite;
}
.demo-wave b:nth-child(2) {
  height: 7px;
  animation-delay: .15s;
}
.demo-wave b:nth-child(3) {
  height: 5px;
  animation-delay: .3s;
}
.demo-wave b:nth-child(4) {
  height: 3px;
  animation-delay: .45s;
}
@keyframes demo-wave {
  0%, 100% {
    transform: scaleY(.5);
  }
  50% {
    transform: scaleY(1.4);
  }
}
@media (prefers-reduced-motion: reduce) {
  .demo-wave b {
    animation: none;
  }
}
.demo-voice-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.demo-voice-txt b {
  font-size: 13px;
  font-weight: 600;
  color: var(--tx);
}
.demo-voice-txt small {
  font-size: 11px;
  color: var(--tx-3);
}
.demo-transport {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.demo-transport .k {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  color: var(--tx-2);
}
.demo-transport .k svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.demo-ctl .play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--glow);
  box-shadow: 0 6px 16px -6px rgba(52, 133, 255, .7);
}
.demo-ctl .play svg {
  width: 15px;
  height: 15px;
  margin-left: 2px;
}
.demo-ctl .pill.is-speed {
  font-weight: 650;
  color: var(--tx);
  font-variant-numeric: tabular-nums;
}
.demo-ctl .pill {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  font-size: 12.5px;
  color: var(--tx-2);
}
.strip {
  border-block: 1px solid var(--line);
  background: var(--pg-2);
}
.strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.strip .item {
  padding: 26px 0 26px 30px;
}
.strip .item:first-child {
  padding-left: 0;
}
.strip .item + .item {
  border-left: 1px solid var(--line);
}
.strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--tx);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.strip span {
  font-size: 14px;
  color: var(--tx-3);
  line-height: 1.5;
}
.section {
  padding: clamp(88px, 11vh, 150px) 0;
}
.section-head {
  max-width: 62ch;
  margin-bottom: 52px;
}
.section-head h2 {
  max-width: 24ch;
  margin: 18px 0 16px;
  font-size: clamp(28px, 3.2vw, 40px);
}
.section-head p {
  max-width: 52ch;
  font-size: 17px;
  color: var(--tx-2);
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cell {
  position: relative;
  padding: 26px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.cell:hover {
  border-color: var(--line-2);
  background: var(--card-2);
}
.cell h3 {
  margin-bottom: 8px;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -.012em;
  font-family: var(--sans);
}
.cell p {
  font-size: 14.5px;
  color: var(--tx-2);
  line-height: 1.6;
}
.cell .ic {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--glow-2);
  background: var(--glow-dim);
  border: 1px solid rgba(52, 133, 255, .22);
}
.cell .ic svg {
  width: 17px;
  height: 17px;
}
.cell-wide {
  grid-column: span 4;
}
.cell-full {
  grid-column: span 6;
}
.cell-tall {
  grid-column: span 2;
}
.cell-third {
  grid-column: span 2;
}
.hl-sample {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--pg-2);
  border: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.75;
  color: var(--tx-3);
}
.hl-sample .para {
  background: rgba(52, 133, 255, .07);
  border-radius: 4px;
}
.hl-sample .sent {
  color: var(--tx);
  background: var(--hl-sentence);
  border-radius: 4px;
}
.hl-sample .word {
  background: var(--hl-word);
  color: #fff;
  border-radius: 3px;
  padding: 0 3px;
}
.hl-key {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 12px;
  color: var(--tx-3);
}
.hl-key i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: -1px;
}
.ways {
  background: var(--pg-2);
  border-block: 1px solid var(--line);
}
.ways .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.way {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}
.way .num {
  font-family: var(--sans);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-size: 26px;
  line-height: 1;
  color: var(--glow-2);
  opacity: .8;
  margin-bottom: 18px;
}
.way h3 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 25px;
  letter-spacing: -.02em;
}
.way p {
  flex: 1;
  margin-bottom: 26px;
  color: var(--tx-2);
  font-size: 15.5px;
}
.get-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 20px;
  align-items: stretch;
}
.get-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  transition:
    transform .35s var(--ease),
    border-color .35s var(--ease),
    box-shadow .35s var(--ease);
}
.get-card .ic {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
}
.get-card.is-primary {
  border-color: var(--glow-line);
  background:
    radial-gradient(
      120% 80% at 50% 0%,
      var(--glow-dim),
      transparent 62%),
    var(--card);
}
@media (prefers-reduced-motion: no-preference) {
  .get-card:hover {
    transform: translateY(-3px);
  }
  .get-card.is-primary:hover {
    border-color: rgba(52, 133, 255, .55);
    box-shadow: 0 18px 50px -22px rgba(52, 133, 255, .55);
  }
}
.get-art,
.modal-art {
  overflow: hidden;
  margin-inline: auto;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      #000 76%,
      transparent 99%);
  mask-image:
    linear-gradient(
      to bottom,
      #000 76%,
      transparent 99%);
}
.get-art img,
.modal-art img {
  display: block;
  width: 100%;
  height: auto;
}
.get-art {
  width: 260px;
  height: 236px;
  margin-bottom: 22px;
}
.get-art.is-player {
  width: 100%;
  max-width: 360px;
  height: auto;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      #000 88%,
      transparent);
  mask-image:
    linear-gradient(
      to bottom,
      #000 88%,
      transparent);
}
.modal-art {
  width: 136px;
  height: 116px;
  margin-bottom: 14px;
}
.get-card.has-art .get-art-band {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 236px;
}
@media (prefers-reduced-motion: no-preference) {
  .get-art img {
    transition: transform .5s var(--ease);
  }
  .get-card.has-art:hover .get-art img {
    transform: translateY(-5px);
  }
}
.get-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.015em;
  font-family: var(--sans);
}
.get-card p {
  flex: 1;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--tx-2);
}
.get-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.soon {
  font-size: 13px;
  color: var(--tx-3);
}
.get-card.is-primary .get-cta .btn-primary {
  padding: 13px 26px;
  font-size: 15.5px;
}
.get-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--tx-3);
}
.get-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.get-proof svg {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--glow-2);
}
@media (max-width: 860px) {
  .get-grid {
    grid-template-columns: 1fr;
  }
  .get-card.has-art .get-art-band {
    min-height: 0;
  }
}
.badge-btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.badge-btn img {
  height: 38px;
  width: auto;
  opacity: .45;
  filter: grayscale(1);
  transition: opacity .15s var(--ease), filter .15s var(--ease);
}
.badge-btn:hover img,
.badge-btn:focus-visible img {
  opacity: .9;
  filter: grayscale(.25);
}
.privacy {
  background: var(--pg-2);
  border-block: 1px solid var(--line);
}
.privacy .wrap {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}
.privacy h2 {
  margin-top: 16px;
  font-size: clamp(28px, 3vw, 38px);
}
.privacy .body p {
  font-size: 17px;
  line-height: 1.68;
  color: var(--tx-2);
}
.privacy .body p + p {
  margin-top: 16px;
}
.privacy .body .pull {
  padding-left: 22px;
  border-left: 2px solid var(--glow-line);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -.015em;
  color: var(--tx);
}
.privacy .more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  color: var(--glow-2);
  font-weight: 500;
  font-size: 15px;
}
.privacy .more:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.final {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
}
.final .wrap {
  position: relative;
}
.final .final-mark {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
}
.final h2 {
  max-width: 20ch;
  margin: 18px auto 16px;
  font-size: clamp(30px, 3.4vw, 44px);
}
.final p {
  max-width: 44ch;
  margin: 0 auto;
  color: var(--tx-2);
  font-size: 17px;
}
.final .cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.final .fine {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--tx-3);
}
.site-foot {
  border-top: 1px solid var(--line);
  background: var(--pg);
  padding: 40px 0 48px;
}
.site-foot .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--tx-3);
}
.site-foot .spacer {
  flex: 1;
}
.site-foot a {
  color: var(--tx-3);
}
.site-foot a:hover {
  color: var(--tx);
}
.site-foot .made {
  color: var(--tx-3);
}
.site-foot .foot-brand {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  opacity: .5;
  transition: opacity .15s var(--ease);
}
.site-foot .foot-brand:hover {
  opacity: 1;
}
.site-foot .foot-brand img {
  display: block;
  height: 32px;
  width: auto;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 7, 10, .72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-backdrop[hidden] {
  display: none;
}
.modal {
  width: 100%;
  max-width: 390px;
  padding: 26px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line-2);
  color: var(--tx-2);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .9);
}
.modal h2 {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 23px;
  letter-spacing: -.02em;
}
.modal .lede {
  margin-bottom: 10px;
  color: var(--glow-2);
  font-size: 13.5px;
  font-weight: 500;
}
.modal p {
  margin-bottom: 16px;
  font-size: 14px;
}
.modal form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.modal label {
  font-size: 12.5px;
  color: var(--tx-3);
}
.modal input[type=email] {
  padding: 11px 12px;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  background: var(--pg-2);
  color: var(--tx);
  font: inherit;
}
.modal input[type=email]::placeholder {
  color: var(--tx-3);
}
.modal .btn {
  width: 100%;
}
.modal-msg {
  min-height: 16px;
  margin: 0;
  font-size: 12.5px;
}
.modal-msg.ok {
  color: #46C68C;
}
.modal-msg.error {
  color: #F0796C;
}
@media (max-width: 1040px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero .lead {
    max-width: 46ch;
  }
  .privacy .wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cell-wide,
  .cell-full {
    grid-column: span 6;
  }
  .cell-tall {
    grid-column: span 3;
  }
  .cell-third {
    grid-column: span 3;
  }
}
@media (max-width: 720px) {
  .wrap {
    width: min(1180px, 100% - 40px);
  }
  .hero {
    padding: 52px 0 60px;
  }
  .section {
    padding: 66px 0;
  }
  .final {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: clamp(38px, 10vw, 52px);
  }
  .strip .wrap {
    grid-template-columns: 1fr;
  }
  .strip .item {
    padding: 20px 0;
  }
  .strip .item + .item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .cell-wide,
  .cell-full,
  .cell-tall,
  .cell-third {
    grid-column: span 1;
  }
  .hero .cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .cta .btn {
    width: 100%;
  }
  .final .cta {
    flex-direction: column;
    align-items: stretch;
  }
  .final .cta .btn {
    width: 100%;
  }
  .ways .grid,
  .get-grid {
    grid-template-columns: 1fr;
  }
  .nav .link {
    display: none;
  }
  .section-head {
    margin-bottom: 36px;
  }
}
.app-dl {
  display: none;
}
@media (max-width: 720px) {
  .app-dl {
    display: inline-flex;
  }
}
html.is-mobile .app-dl {
  display: inline-flex;
}
[data-signed-in] .nav a[href="/login"]:not([data-authed]),
[data-signed-in] .app-dl {
  display: none;
}
@media (max-width: 460px) {
  .brand {
    margin-right: 6px;
  }
  .nav {
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
