@font-face {
  font-family: "Mousely Sans";
  src: url("/assets/jA0hg3ToxxGdQVJd3NPiarTey4.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Mousely Sans";
  src: url("/assets/4X9zTCJGNN1XMTvKKEuh8gyfwk.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Mousely Sans";
  src: url("/assets/xKmH7gYVxBZb5FSUFFckyvSgiNw.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}

:root {
  --ink: #141313;
  --muted: #5f5a57;
  --muted-soft: #7a7470;
  --blue: #079ceb;
  --blue-deep: #0078d4;
  /* Darkest blue in the ramp: the only one that clears AA on small text over paper. */
  --blue-ink: #0064b0;
  --android-green: #237a45;
  --android-green-muted: #3a8457;
  --blue-wash: #eef8ff;
  --paper-shade: #f1f3f5;
  --page-sky: #f5fbff;
  --page-sky-deep: #f2f9ff;
  --paper: #fbfdff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #fff;
  --line: rgba(20, 19, 19, 0.12);
  --line-strong: rgba(20, 19, 19, 0.22);
  --shadow-float: 0 18px 58px rgba(18, 32, 43, 0.11);
  --shadow-soft: 0 16px 42px rgba(18, 32, 43, 0.09);
  --radius-sm: 8px;
  --radius-control: 12px;
  --radius-card: 18px;
  --radius-product: 24px;
  --content-wide: 1160px;
  --content-narrow: 900px;
  --content-reading: 720px;
  --tracking-display: -0.025em;
  --gutter: clamp(18px, 3.5vw, 44px);
  --section-space: clamp(64px, 7vw, 88px);
  --page-space-top: clamp(62px, 8vh, 88px);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --home-fold-top: 82px;
  --home-ticker-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-sky);
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

html.is-inertia-scrolling {
  scroll-behavior: auto;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -28rem, rgba(7, 156, 235, 0.16), transparent 44rem),
    linear-gradient(180deg, var(--page-sky) 0%, var(--paper) 42%, var(--page-sky-deep) 100%);
  background-color: var(--page-sky);
  font-family: "Mousely Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

body.menu-open {
  overflow: hidden;
}

body.home-page {
  background:
    radial-gradient(circle at 50% -18rem, rgba(7, 156, 235, 0.12), transparent 40rem),
    linear-gradient(180deg, var(--page-sky) 0%, var(--page-sky) 22%, var(--paper) 52%, var(--page-sky-deep) 100%);
  background-color: var(--page-sky);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  background: transparent;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 420ms var(--ease);
}

body.menu-open::before {
  opacity: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 180ms ease;
}

.js img[loading="lazy"]:not(.is-loaded) {
  opacity: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: var(--tracking-display);
}

h2 {
  max-width: 660px;
  font-size: clamp(29px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.022em;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

p {
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(7, 156, 235, 0.42);
  outline-offset: 3px;
}

.js main {
  animation: page-enter 420ms var(--ease) both;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-shell {
  position: relative;
  width: min(100%, 1500px);
  margin-inline: auto;
  padding: 16px var(--gutter) 30px;
  isolation: isolate;
}

.site-announcement {
  position: relative;
  z-index: 60;
  width: 100%;
  min-height: 44px;
  background: var(--blue-deep);
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.site-announcement-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px max(64px, calc(env(safe-area-inset-right) + 52px)) 8px max(64px, calc(env(safe-area-inset-left) + 52px));
  color: inherit;
  text-decoration: none;
}

.site-announcement-close {
  position: absolute;
  top: 50%;
  right: max(8px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease;
}

.site-announcement-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-announcement-close svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-announcement strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.site-announcement strong span {
  transition: transform 180ms var(--ease);
}

.site-announcement-link:hover strong span,
.site-announcement-link:focus-visible strong span {
  transform: translateX(3px);
}

.site-announcement-link:focus-visible,
.site-announcement-close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -4px;
}

body.home-page.announcement-dismissed {
  --home-fold-top: 82px;
}

.site-shell > main,
.site-footer {
  transition: filter 520ms var(--ease);
  will-change: filter;
}

body.menu-open .site-shell > main,
body.menu-open .site-footer {
  filter: blur(16px);
}

.site-shell::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 100vw;
  height: 260px;
  z-index: -1;
  pointer-events: none;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(245, 251, 255, 0.98) 0%, rgba(245, 251, 255, 0.68) 52%, transparent 100%),
    radial-gradient(circle at 50% 70%, rgba(7, 156, 235, 0.08), transparent 62%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 100%);
}

.site-header {
  --header-inset: 14px;
  position: sticky;
  top: 18px;
  z-index: 50;
  width: min(var(--content-wide), 100%);
  min-height: 60px;
  margin-inline: auto;
  padding: 8px var(--header-inset);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(20, 19, 19, 0.08);
  border-radius: 999px;
  background: #f3f9ff;
  box-shadow: 0 16px 44px rgba(18, 32, 43, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  position: relative;
  width: 141px;
  min-width: 141px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  transform: translateZ(0);
  transform-origin: center;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
  will-change: transform;
}

.brand img {
  width: 141px;
  transform: translateZ(0);
  transition:
    filter 160ms ease,
    opacity 160ms ease,
    transform 180ms var(--ease);
}

.brand img[src$="mousely-lockup.png"] {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 141px;
  height: auto;
  max-width: none;
  margin-block: auto;
}

.brand:active,
.brand.is-pressing {
  background: transparent;
  box-shadow: none;
  transform: translateY(1px) scale(0.988);
}

.brand:active img,
.brand.is-pressing img {
  filter: grayscale(1) brightness(0.58) contrast(0.88);
  opacity: 0.72;
  transform: scale(0.982);
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(20, 19, 19, 0.68);
  font-size: 13px;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  padding-inline: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(20, 19, 19, 0.13);
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  transition:
    transform 190ms var(--ease),
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 190ms var(--ease);
}

.nav-links .nav-cta:hover {
  background: #302e2d;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 11px 26px rgba(20, 19, 19, 0.15);
}

.nav-links .nav-cta:active {
  background: #3d3a38;
  color: rgba(255, 255, 255, 0.88);
  transform: translateY(2px) scale(0.972);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(20, 19, 19, 0.1);
}

.mobile-nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  position: relative;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 19, 19, 0.06);
  color: var(--ink);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  transition:
    transform 190ms var(--ease),
    background-color 180ms ease,
    box-shadow 190ms var(--ease);
}

.menu-toggle:hover {
  background: rgba(20, 19, 19, 0.1);
}

.menu-toggle:active {
  transform: translateY(1px) scale(0.95);
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  top: 21px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

body.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.button {
  max-width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  transition:
    transform 180ms var(--ease),
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(2px) scale(0.985);
  box-shadow: 0 5px 16px rgba(20, 19, 19, 0.18);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(20, 19, 19, 0.15);
}

.button-primary:hover {
  background: #302e2d;
}

.button-primary:active {
  background: #0d0c0c;
}

.button-secondary,
.button-windows {
  border-color: transparent;
  background: transparent;
  color: var(--blue-deep);
  box-shadow: none;
}

.button-macos {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button-secondary:hover,
.button-windows:hover,
.button-macos:hover {
  border-color: transparent;
  background: rgba(7, 156, 235, 0.08);
}

.button-secondary:active,
.button-windows:active,
.button-macos:active {
  background: rgba(7, 156, 235, 0.14);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue-deep);
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link[hidden] {
  display: none;
}

.button-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.apple-icon {
  width: 18px;
  height: 22px;
}

.windows-icon {
  color: var(--blue-deep);
}

.download-icon {
  color: currentColor;
}

.platform-icon-hover {
  display: none;
}

.hero-downloads .button:hover .platform-icon-default,
.hero-downloads .button:active .platform-icon-default {
  display: none;
}

.hero-downloads .button:hover .platform-icon-hover,
.hero-downloads .button:active .platform-icon-hover {
  display: block;
}

.lock-icon {
  width: 17px;
  height: 17px;
}

[data-testflight-download],
[data-windows-download],
[data-macos-download] {
  justify-content: flex-start;
}

[data-testflight-download] {
  width: min(100%, 338px);
  min-width: min(338px, 100%);
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  justify-items: start;
  column-gap: 12px;
  padding-inline: 22px 24px;
  white-space: nowrap;
}

[data-windows-download] {
  width: auto;
  min-width: 0;
  min-height: 44px;
  padding-inline: 9px;
  font-size: 13px;
}

.button-windows,
.button-macos,
.button-android {
  min-height: 44px;
  padding-inline: 10px;
  gap: 7px;
  font-size: 13px;
}

.button-state-hover {
  display: none;
}

.button-android.is-jiggling {
  animation: unavailable-jiggle 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.button-android {
  border-color: transparent;
  background: transparent;
  color: var(--android-green);
  box-shadow: none;
  cursor: pointer;
}

.button-android:hover,
.button-android:active {
  transform: none;
  border-color: rgba(61, 220, 132, 0.18);
  background: rgba(61, 220, 132, 0.1);
  color: rgba(35, 139, 82, 0.68);
}

.button-android:hover .button-state-default {
  display: none;
}

.button-android:hover .button-state-hover {
  display: inline;
}

[data-testflight-download] .button-label,
[data-windows-download] .button-label,
[data-macos-download] .button-label {
  min-width: 0;
  flex: 1;
  text-align: center;
  line-height: 1.2;
}

[data-testflight-download] .button-label {
  width: 100%;
  overflow: visible;
  white-space: nowrap;
  text-overflow: initial;
}

[data-testflight-download] .button-icon {
  justify-self: start;
}

[data-testflight-download]::after,
[data-windows-download]::after {
  content: "";
  width: 24px;
  flex: 0 0 24px;
}

[data-testflight-download]::after,
[data-windows-download]::after {
  content: none;
}

[data-testflight-download]:hover,
[data-testflight-download].is-teasing {
  background:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px) center / 24px 24px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px) center / 24px 24px,
    linear-gradient(135deg, #12a9f4 0%, #4289f5 100%);
  color: #fff;
}

[data-windows-download]:hover,
[data-windows-download].is-teasing {
  color: var(--blue-deep);
}

.button-testflight {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px) center / 24px 24px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px) center / 24px 24px,
    linear-gradient(135deg, #079ceb 0%, #2f7df0 100%);
  background-origin: border-box;
  background-clip: padding-box, padding-box, border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 38px rgba(7, 156, 235, 0.28);
}

.hero-actions .button-testflight {
  flex: 0 0 338px;
}

.button-testflight:hover,
.button-testflight.is-teasing {
  background:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px) center / 24px 24px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px) center / 24px 24px,
    linear-gradient(135deg, #12a9f4 0%, #4289f5 100%);
}

.button-testflight:active {
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px) center / 24px 24px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px) center / 24px 24px,
    linear-gradient(135deg, #078bd5 0%, #286ee0 100%);
  box-shadow:
    inset 0 2px 6px rgba(5, 70, 120, 0.24),
    0 8px 20px rgba(7, 156, 235, 0.22);
}

.home-page .hero-actions > .button-primary {
  width: 184px;
  max-width: 100%;
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-control);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%),
    var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 32px rgba(20, 19, 19, 0.16);
  letter-spacing: 0;
}

.home-page .hero-actions > .button-primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 48%),
    #242322;
}

.home-page .hero-actions > .button-primary:active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 48%),
    #11100f;
}

.hero-downloads-slot {
  width: min(100%, 600px);
  height: 0;
  position: relative;
  margin-top: 0;
}

.hero-downloads {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
  justify-content: center;
  justify-items: center;
  column-gap: 32px;
  row-gap: 16px;
  margin-top: 0;
}

.hero-downloads:not(.is-spotlighted) {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.download-group {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.download-spotlight-intro {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.download-spotlight-intro h2,
.download-spotlight-intro p {
  margin: 0;
}

.download-spotlight-intro h2 {
  color: var(--ink);
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.download-spotlight-intro p {
  color: rgba(20, 19, 19, 0.54);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.download-group h3 {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: rgba(20, 19, 19, 0.72);
  line-height: 1.1;
}

.download-step-label {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-step-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.download-heading-icon {
  width: 15px;
  height: 15px;
  color: rgba(20, 19, 19, 0.42);
  flex: 0 0 auto;
}

.hero-downloads .button {
  position: relative;
  width: 116px;
  min-width: 116px;
  min-height: 44px;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  column-gap: 9px;
  padding: 0 8px;
  border-radius: var(--radius-control);
  font-size: 12px;
  line-height: 1;
}

.hero-downloads .button .button-label {
  width: auto;
  min-width: 0;
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}

.platform-new-badge {
  position: absolute;
  top: -7px;
  right: -5px;
  z-index: 1;
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--blue-deep);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 9px rgba(7, 108, 176, 0.22);
}

.hero-downloads .button::before {
  content: "";
  position: absolute;
  inset: -4px 0;
  border-radius: inherit;
}

.hero-downloads .app-prompts {
  display: grid;
  grid-template-columns: 116px 14px 116px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0;
}

.hero-downloads .receiver-prompts {
  grid-template-columns: 116px 14px 116px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0;
}

.platform-choice-or {
  color: rgba(20, 19, 19, 0.42);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.hero-downloads .button-testflight-compact {
  width: 116px;
  min-width: 116px;
  grid-template-columns: auto auto;
  justify-content: center;
  justify-items: center;
  align-items: center;
  column-gap: 9px;
  padding-inline: 8px;
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.hero-downloads .button-testflight-compact:hover,
.hero-downloads .button-testflight-compact:active {
  border-color: transparent;
  background: rgba(20, 19, 19, 0.18);
  color: var(--ink);
}

.hero-downloads .button-testflight-compact .button-label {
  flex: 0 0 auto;
  color: currentColor;
  text-align: center;
}

.hero-downloads .button-testflight-compact .button-icon {
  justify-self: center;
  color: currentColor;
  width: 15px;
  height: 18px;
}

.hero-downloads .button-windows .button-icon,
.hero-downloads .button-macos .button-icon,
.hero-downloads .button-android .button-icon {
  width: 17px;
  height: 17px;
}

.hero-downloads .button-android .button-icon {
  width: 18px;
  height: 18px;
}

.hero-downloads .download-icon {
  width: 17px;
  height: 17px;
}

.download-compatibility {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0;
  color: rgba(20, 19, 19, 0.5);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.button-label.is-pulsing,
.button-label.is-shimmering {
  animation: label-pulse 300ms ease;
}

@keyframes label-pulse {
  50% {
    opacity: 0.62;
  }
}

@keyframes unavailable-jiggle {
  0%,
  100% {
    transform: translateX(0);
  }

  18% {
    transform: translateX(-4px) rotate(-1.5deg);
  }

  38% {
    transform: translateX(4px) rotate(1.5deg);
  }

  58% {
    transform: translateX(-2px) rotate(-0.8deg);
  }

  78% {
    transform: translateX(2px) rotate(0.8deg);
  }
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-subcopy,
.page-hero p,
.beta-card-copy p,
.simple-list p,
.legal-page p,
.pricing-section-heading > p {
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
}

.home-page .site-shell {
  width: min(100%, 1600px);
}

.home-page main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.hero-simple {
  position: relative;
  width: 100vw;
  min-height: min(760px, calc(100svh - var(--home-fold-top)));
  height: auto;
  margin: 0 calc(50% - 50vw);
  padding: 0 22px var(--home-ticker-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  /* Message/conversion first, then an oversized product reveal that
     continues beneath the first fold. */
  grid-template-rows: auto minmax(270px, 1fr);
  row-gap: clamp(26px, 3vh, 38px);
  place-items: center;
  align-content: center;
  overflow: visible;
  border-bottom: 0;
  isolation: isolate;
  touch-action: pan-y;
}

.home-page .hero-simple {
  grid-column: 1;
  grid-row: 1;
}

.hero-stage {
  position: absolute;
  top: -260px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  z-index: -1;
  overflow: clip;
  pointer-events: none;
  transform: translateX(-50%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, rgba(0, 0, 0, 0.56) 18%, #000 30%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, rgba(0, 0, 0, 0.56) 18%, #000 30%, #000 100%);
}

.hero-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 62%;
  width: min(104vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 156, 235, 0.2), transparent 72%);
  filter: blur(20px);
  transform: translate(-50%, -50%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--page-sky) 0%, rgba(245, 251, 255, 0.82) 12%, rgba(245, 251, 255, 0.44) 28%, rgba(245, 251, 255, 0.14) 46%, transparent 64%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.68) 34%, transparent 66%);
}

.dot-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 8%, rgba(0, 0, 0, 0.52) 18%, #000 32%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 8%, rgba(0, 0, 0, 0.52) 18%, #000 32%, #000 100%);
}

/* Presenter hero mockup: centered below the message and cropped by the fold. */
.hero-phone {
  grid-row: 2;
  grid-column: 1;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: clip;
  pointer-events: none;
}

.hero-phone img {
  position: relative;
  z-index: 1;
  width: auto;
  height: clamp(470px, 62vh, 600px);
  max-height: none;
  max-width: min(88vw, 520px);
  object-fit: contain;
  /* Keep the source artwork out of Safari's image-filter compositor. Applying
     an SVG alpha filter or drop-shadow here exposes the full raster bounds as
     a faint rectangle; the artwork already contains its intended soft edge. */
  filter: none;
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, rgba(0, 0, 0, 0.82) 93%, rgba(0, 0, 0, 0.28) 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, rgba(0, 0, 0, 0.82) 93%, rgba(0, 0, 0, 0.28) 98%, transparent 100%);
  /* Center the phone hardware, whose visual midpoint sits at 62% of the
     transparent source canvas, rather than centering the raster bounds. */
  transform: translate(-15%, 8px);
}

.hero-copy {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 1;
  align-self: center;
  top: 0;
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  padding-top: clamp(36px, 5vh, 54px);
  padding-right: 0;
  text-align: center;
}

.hero-copy h1,
.auth-panel h1,
.account-stage h1,
.pricing-hero h1 {
  margin-top: 6px;
  /* Height-aware as well as width-aware: on short laptop viewports the
     headline yields a little so the hero image keeps usable space. */
  font-size: clamp(34px, min(4.2vw, 6.4vh), 56px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: var(--tracking-display);
}

.home-page .hero-copy h1 {
  max-width: 940px;
  font-size: clamp(58px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: var(--tracking-display);
}

.hero-subcopy,
.auth-panel [data-auth-intro],
.account-stage > h1 + p,
.pricing-hero > h1 + p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(20, 19, 19, 0.72);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.45;
}

.home-page .hero-subcopy {
  margin-top: 20px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
}

.home-page .hero-subcopy span {
  display: block;
  white-space: nowrap;
}

.home-page .hero-actions {
  width: min(100%, 600px);
  justify-content: center;
  margin-top: 18px;
}

.hero-platforms {
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: rgba(20, 19, 19, 0.7);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.hero-platform {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

button.hero-platform {
  appearance: none;
  position: relative;
  min-height: 36px;
  margin: -7px -8px;
  padding: 7px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  transition: background-color 160ms ease;
}

button.hero-platform::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
}

button.hero-platform:hover {
  background: rgba(7, 156, 235, 0.08);
}

button.hero-platform:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 2px;
}

.hero-platform-icon {
  width: 14px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}

.hero-platform-icon-hover {
  display: none;
}

button.hero-platform:is(:hover, :focus-visible) .hero-platform-icon-default {
  display: none;
}

button.hero-platform:is(:hover, :focus-visible) .hero-platform-icon-hover {
  display: block;
}

button.hero-platform.hero-platform-windows {
  color: var(--blue-deep);
}

.hero-platform-new {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  margin-left: -2px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(7, 156, 235, 0.12);
  color: var(--blue-deep);
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero-platform-icon-android {
  width: 16px;
}

button.hero-platform.hero-platform-soon {
  color: var(--android-green-muted);
}

.hero-platform-soon small {
  margin-left: -2px;
  color: currentColor;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.host-prompt {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.receiver-prompts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  justify-items: center;
  align-items: start;
  gap: 18px;
  margin-top: 28px;
}

.receiver-prompts .host-prompt {
  margin-top: 0;
}

.tiny-icon {
  display: inline-block;
  background: currentColor;
  color: var(--blue);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.ticker,
.feature-grid,
.steps-section,
.compare-section,
.closing-cta,
.waitlist-section,
.page-hero,
.beta-card-page,
.simple-list,
.legal-page,
.site-footer {
  width: min(var(--content-wide), 100%);
  margin-inline: auto;
}

.ticker {
  --ticker-gap: 14px;
  position: relative;
  width: 100vw;
  height: var(--home-ticker-height);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  overflow-x: hidden;
  contain: layout paint;
  padding: 0 max(14px, calc(50vw - 780px));
  border-bottom: 1px solid var(--line);
}

.ticker.is-draggable {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.ticker.is-dragging {
  cursor: grabbing;
}

.home-page .ticker {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  background: #f7fcff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ticker-track {
  position: absolute;
  top: 14px;
  left: max(14px, calc(50vw - 780px));
  width: max-content;
  display: flex;
  align-items: center;
  gap: var(--ticker-gap);
  animation: ticker-move 46s linear infinite;
}

.ticker.is-js-scrolling .ticker-track {
  animation: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

body.mwl-modal-open .ticker-track {
  animation-play-state: paused;
}

body.mwl-modal-open .dot-field {
  pointer-events: none;
}

.ticker-track > span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(7, 156, 235, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 10px 28px rgba(18, 32, 43, 0.06);
}

.ticker .tiny-icon {
  width: 22px;
  height: 22px;
  margin: 0;
  color: var(--blue);
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.steps-title-tiny {
  color: var(--blue);
  font-size: 0.64em;
  white-space: nowrap;
}

.feature-grid,
.steps-section,
.compare-section {
  padding: clamp(88px, 8vw, 112px) 0;
}

.home-page :is(.section-heading, .compare-heading) h2 {
  max-width: 820px;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: var(--tracking-display);
}

.feature-grid {
  padding-inline: 0;
}

.compare-section {
  border-bottom: 1px solid var(--line);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 68px);
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.feature-item {
  min-height: 220px;
  padding: 0 8px 8px 0;
}

.feature-item-heading {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.feature-item-heading .tiny-icon {
  width: 34px;
  height: 34px;
  margin: 0;
}

.tiny-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 38px;
  transition: transform 180ms var(--ease);
}

.icon-click {
  mask-image: url("/images/icons/mousely-tap.svg");
  -webkit-mask-image: url("/images/icons/mousely-tap.svg");
}

.icon-scroll {
  mask-image: url("/images/icons/mousely-scroll.svg");
  -webkit-mask-image: url("/images/icons/mousely-scroll.svg");
}

.icon-battery {
  mask-image: url("/images/icons/mousely-desktop.svg");
  -webkit-mask-image: url("/images/icons/mousely-desktop.svg");
}

.feature-item:hover .tiny-icon {
  transform: translateY(-2px) rotate(-3deg);
}

.ticker .tiny-icon {
  width: 22px;
  height: 22px;
  margin: 0;
  color: var(--blue);
}

.icon-pointer,
.icon-drag {
  mask-image: url("/images/icons/mousely-drag.svg");
  -webkit-mask-image: url("/images/icons/mousely-drag.svg");
}

.icon-presentation,
.icon-laser {
  mask-image: url("/images/icons/mousely-laser.svg");
  -webkit-mask-image: url("/images/icons/mousely-laser.svg");
}

.icon-pair {
  mask-image: url("/images/icons/mousely-pair.svg");
  -webkit-mask-image: url("/images/icons/mousely-pair.svg");
}

.icon-pocket {
  mask-image: url("/images/icons/mousely-laptop.svg");
  -webkit-mask-image: url("/images/icons/mousely-laptop.svg");
}

.icon-slide {
  mask-image: url("/images/icons/mousely-slide.svg");
  -webkit-mask-image: url("/images/icons/mousely-slide.svg");
}

.icon-volume {
  mask-image: url("/images/icons/mousely-volume.svg");
  -webkit-mask-image: url("/images/icons/mousely-volume.svg");
}

.icon-desktop {
  mask-image: url("/images/icons/mousely-desktop.svg");
  -webkit-mask-image: url("/images/icons/mousely-desktop.svg");
}

.icon-settings {
  mask-image: url("/images/icons/mousely-settings.svg");
  -webkit-mask-image: url("/images/icons/mousely-settings.svg");
}

.icon-laptop {
  mask-image: url("/images/icons/mousely-laptop.svg");
  -webkit-mask-image: url("/images/icons/mousely-laptop.svg");
}

.feature-item h3 {
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.05;
}

.feature-item h3 {
  max-width: 13ch;
  margin-bottom: 14px;
}

.feature-item p,
.step-list p,
.closing-cta p {
  color: var(--muted);
  font-size: 15px;
}

.feature-item p {
  max-width: 34ch;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.5;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.step-list li {
  min-height: 204px;
  padding: 30px 28px 32px;
  border-left: 1px solid var(--line);
}

.step-list li:first-child {
  border-left: 0;
}

.step-list span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
}

.step-list h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.6vw, 22px);
}

.compare-heading {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-heading h2 {
  max-width: 760px;
}

.compare-heading > p:last-child {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
}

.compare-table-wrap {
  margin-top: 48px;
  position: relative;
  overflow: clip;
  border: 1px solid rgba(20, 19, 19, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 54px rgba(18, 32, 43, 0.055);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  color: var(--ink);
  font-size: 15px;
}

.compare-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.compare-capability-column {
  width: 34%;
}

.compare-mousely-column {
  width: 22%;
}

.compare-table th,
.compare-table td {
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.compare-table thead th {
  height: 154px;
  padding-top: 22px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  vertical-align: bottom;
}

.compare-table thead th:first-child,
.compare-table tbody th {
  text-align: left;
}

.compare-table thead th:first-child {
  padding-bottom: 22px;
  color: var(--muted-soft);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compare-table thead span {
  display: block;
}

.compare-table .compare-device-art {
  display: grid;
  width: 88px;
  height: 76px;
  margin: 0 auto 11px;
  place-items: center;
}

.compare-device-art img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  opacity: 0.58;
}

.compare-device-art-app img {
  width: 56px;
  height: 56px;
  opacity: 1;
  filter: drop-shadow(0 10px 20px rgba(7, 156, 235, 0.2));
}

.compare-table tbody th {
  color: rgba(20, 19, 19, 0.82);
  font-weight: 600;
  line-height: 1.35;
}

.compare-table td {
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

.compare-table .is-mousely {
  border-right: 1px solid rgba(7, 156, 235, 0.14);
  border-bottom-color: rgba(7, 156, 235, 0.12);
  border-left: 1px solid rgba(7, 156, 235, 0.14);
  background: rgba(7, 156, 235, 0.06);
}

.compare-table thead .is-mousely {
  color: var(--blue-deep);
}

.compare-table .is-best {
  color: var(--blue-deep);
  font-weight: 700;
}

.compare-table .is-muted {
  color: rgba(20, 19, 19, 0.44);
}

.compare-table tbody tr:last-child > * {
  border-bottom: 0;
}


.closing-cta {
  display: grid;
  justify-items: center;
  gap: clamp(32px, 4vw, 48px);
  padding: clamp(96px, 8vw, 116px) 0 clamp(72px, 7vw, 92px);
  border-top: 1px solid var(--line-strong);
  text-align: center;
}

.closing-copy {
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  gap: 26px;
}

.closing-mark {
  width: clamp(64px, 6vw, 76px);
  height: clamp(64px, 6vw, 76px);
  display: block;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.closing-copy-body {
  display: grid;
  justify-items: center;
}

.closing-cta h2 {
  max-width: 880px;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: var(--tracking-display);
}

.closing-copy-body > p {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(20, 19, 19, 0.72);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.45;
}

.closing-copy-body > .button {
  width: 214px;
  min-height: 52px;
  margin-top: 26px;
}

.release-status {
  width: min(780px, 100%);
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.release-row {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 82px;
  padding: 18px 28px;
}

.release-row + .release-row {
  border-top: 0;
  border-left: 1px solid var(--line);
}

.release-label {
  position: relative;
  padding-left: 18px;
  color: var(--muted-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.release-label::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.release-row-next .release-label::before {
  background: rgba(20, 19, 19, 0.25);
}

.release-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.release-platform {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.release-row-next .release-platform {
  color: var(--muted-soft);
  font-weight: 500;
}

.release-platform-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.release-platform-icon-android {
  width: 20px;
}

@keyframes icon-breathe {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes ticker-move {
  to {
    transform: translateX(calc(-50% - (var(--ticker-gap) / 2)));
  }
}

.page-hero {
  min-height: min(560px, calc(100svh - 112px));
  padding: var(--page-space-top) 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.page-hero > *,
.beta-card-page > *,
.legal-page > * {
  min-width: 0;
}

.page-hero,
.beta-card-page,
.legal-page,
.faq-section {
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
}

.page-hero h1,
.beta-card-copy h1,
.legal-page h1,
.faq-section h2,
.legal-page h2 {
  padding-bottom: 0.08em;
}

.page-hero p {
  max-width: 640px;
  margin-top: 18px;
}

.early-access-hero {
  width: min(860px, 100%);
  min-height: auto;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-top: clamp(72px, 9vh, 96px);
  text-align: center;
}

.early-access-hero > :first-child {
  width: min(100%, 720px);
}

.early-access-mark {
  width: 58px;
  margin: 0 auto 14px;
  border-radius: 31%;
  filter: drop-shadow(0 14px 24px rgba(7, 156, 235, 0.2));
}

.early-access-hero p,
.early-access-hero .hero-actions {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.early-access-visual {
  position: relative;
  justify-self: center;
  width: min(82vw, 660px);
  margin-top: 26px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.early-access-visual::before,
.beta-card-art::before {
  content: "";
  position: absolute;
  width: 118%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  background:
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.98) 18%, rgba(255, 255, 255, 0.72) 36%, transparent 58%),
    radial-gradient(circle, rgba(7, 156, 235, 0.3) 0 2px, transparent 2.5px) 0 0 / 23px 23px,
    radial-gradient(circle, rgba(7, 156, 235, 0.18), transparent 68%);
  mask-image: radial-gradient(circle, #000 0%, rgba(0, 0, 0, 0.72) 46%, rgba(0, 0, 0, 0.22) 66%, transparent 84%);
  -webkit-mask-image: radial-gradient(circle, #000 0%, rgba(0, 0, 0, 0.72) 46%, rgba(0, 0, 0, 0.22) 66%, transparent 84%);
}

.early-access-phone-mockup {
  width: min(68vw, 520px);
  max-width: none;
  filter: drop-shadow(0 34px 62px rgba(18, 32, 43, 0.18));
  transform: translateX(-10%);
}

.platform-statuses {
  margin-top: 30px;
  justify-content: center;
}

.early-access-hero .platform-statuses {
  justify-content: center;
}

.beta-card-page {
  box-sizing: border-box;
  min-height: min(580px, calc(100svh - 112px));
  padding: var(--page-space-top) 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
}

.beta-card-copy h1 {
  max-width: 640px;
}

.beta-card-copy p {
  max-width: 560px;
  margin-top: 16px;
}

.beta-card-mark {
  width: 58px;
  margin-bottom: 14px;
  display: block;
  border-radius: 31%;
  filter: drop-shadow(0 14px 24px rgba(7, 156, 235, 0.2));
}

.beta-card-copy .beta-card-lede {
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.3;
}

.beta-card-copy .hero-actions {
  align-items: center;
}

.beta-card-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.beta-card-note a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-deep);
  text-underline-offset: 4px;
}

.beta-card-art {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.beta-card-art::before {
  content: "";
  position: absolute;
  inset: 4% 0 0;
  width: auto;
  aspect-ratio: auto;
  border-radius: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(7, 156, 235, 0.16), transparent 62%),
    radial-gradient(circle, rgba(7, 156, 235, 0.16) 0 2px, transparent 2.6px) 50% 63% / 23px 23px;
  opacity: 0.9;
  mask-image: radial-gradient(ellipse at 50% 46%, #000 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.18) 58%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 46%, #000 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.18) 58%, transparent 74%);
}

.beta-card-surface {
  --beta-tilt-x: 0deg;
  --beta-tilt-y: 0deg;
  position: relative;
  width: min(100%, 560px);
  min-height: 460px;
  transform: perspective(900px) rotateX(var(--beta-tilt-x)) rotateY(var(--beta-tilt-y));
  transform-style: preserve-3d;
  transition: transform 420ms var(--ease);
  will-change: transform;
}

.beta-card-image {
  position: absolute;
  max-width: none;
  filter: drop-shadow(0 24px 44px rgba(18, 32, 43, 0.16));
  transition: filter 420ms var(--ease);
}

.beta-card-image-front {
  left: 0;
  bottom: 38px;
  z-index: 2;
  width: min(88vw, 460px);
  border-radius: 18px;
  clip-path: inset(2px round 18px);
  transform: translateZ(28px) rotate(-3deg);
}

.beta-card-image-back {
  right: 12px;
  top: 0;
  z-index: 1;
  width: min(40vw, 188px);
  border-radius: var(--radius-control);
  clip-path: inset(2px round var(--radius-control));
  transform: translateZ(8px) rotate(7deg);
}

.beta-card-art.is-tilting .beta-card-surface {
  transition-duration: 80ms;
}

.beta-card-art.is-tilting .beta-card-image {
  filter: drop-shadow(0 30px 52px rgba(18, 32, 43, 0.18));
}

.not-found-page {
  min-height: min(580px, calc(100svh - 112px));
  padding: var(--page-space-top) 0 44px;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found-copy {
  position: relative;
  width: min(100%, 680px);
  padding-inline: 12px;
}

.not-found-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(74vw, 520px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(7, 156, 235, 0.2) 0 2px, transparent 2.6px) 50% 50% / 23px 23px,
    radial-gradient(circle, rgba(7, 156, 235, 0.13), transparent 66%);
  opacity: 0.76;
  transform: translate(-50%, -50%);
  mask-image: radial-gradient(circle, #000 0%, rgba(0, 0, 0, 0.44) 48%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle, #000 0%, rgba(0, 0, 0, 0.44) 48%, transparent 72%);
}

.not-found-code {
  display: block;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.not-found-copy h1 {
  max-width: 620px;
  margin: 14px auto 0;
}

.not-found-copy p {
  max-width: 420px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.not-found-copy .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.form-page {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: clamp(24px, 4vw, 52px);
  text-align: left;
}

.form-page > :first-child,
.support-hero {
  width: min(100%, 640px);
  justify-self: start;
}

.form-page p,
.support-hero p {
  margin-left: 0;
  margin-right: 0;
}

.contact-form {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(20, 19, 19, 0.08);
  border-radius: var(--radius-card);
  background: #f3f9ff;
  box-shadow: 0 14px 36px rgba(18, 32, 43, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.contact-form > * {
  min-width: 0;
  max-width: 100%;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(20, 19, 19, 0.74);
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fff;
  color: var(--ink);
  font-size: 16px;
}

.contact-form input,
.contact-form select {
  min-height: 58px;
  padding: 0 15px;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 25px) 50%,
    calc(100% - 18px) 50%;
  background-repeat: no-repeat;
  background-size: 7px 7px;
  cursor: pointer;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
}

.contact-form .mwl-turnstile {
  max-width: 100%;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
}

.form-status:empty {
  display: none;
}

.form-status.error {
  color: #a92323;
}

.form-status.success {
  color: #087442;
}

.text-page {
  display: block;
  min-height: auto;
  max-width: var(--content-reading);
}

.support-hero {
  width: min(860px, 100%);
  max-width: none;
  padding-bottom: 28px;
}

.support-hero .hero-actions {
  align-items: center;
}

.faq-section {
  box-sizing: border-box;
  width: min(860px, 100%);
  margin: 8px auto 0;
  padding-bottom: 28px;
}

.faq-section h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.faq-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 18px 44px 18px 0;
  color: var(--ink);
  font-size: clamp(17px, 1.6vw, 20px);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  color: var(--blue-deep);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  overflow: hidden;
}

.js .faq-answer {
  height: 0;
}

.js .faq-list details[open] .faq-answer {
  height: auto;
}

.faq-answer p {
  max-width: 700px;
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 16px;
}

.legal-page {
  max-width: var(--content-reading);
  padding: var(--page-space-top) 0 24px;
}

.legal-page h1 {
  font-size: clamp(34px, 4vw, 52px);
}

.legal-page h2 {
  margin-top: 32px;
  font-size: clamp(22px, 2.3vw, 28px);
}

.legal-page p {
  margin-top: 13px;
  font-size: 16px;
  line-height: 1.6;
}

.legal-page a {
  color: var(--blue-ink);
  text-underline-offset: 4px;
}

.legal-page .legal-inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.legal-page .button-secondary {
  color: var(--blue-ink);
}

.updated {
  color: var(--muted) !important;
  font-size: 15px !important;
}

.site-footer {
  margin-top: 64px;
  width: min(var(--content-wide), 100%);
  margin-inline: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto max-content auto;
  justify-content: space-between;
  align-items: center;
  gap: 20px 28px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  text-align: right;
}

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 7px 10px;
  overflow: visible;
}

.footer-credit-label {
  flex: 0 0 auto;
  color: var(--muted-soft);
}

.footer-team {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 4px 12px;
}

.team-person {
  --avatar-shift-x: 0px;
  --avatar-shift-y: 0px;
  --avatar-rotate: 0deg;
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  cursor: default;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
}

a.team-person {
  cursor: pointer;
}

.team-person img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(7, 156, 235, 0.22);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(18, 32, 43, 0.11);
  object-fit: cover;
  object-position: center;
  transform: translate(0, 0) rotate(0deg);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.footer-team .team-person:not(:last-child) > span:last-child::after {
  content: ",";
}

.footer-team .team-person:last-child::before {
  content: "&";
  margin-right: 3px;
  color: var(--muted-soft);
}

.footer-team .team-person:last-child > span:last-child::after {
  content: ".";
}

.team-person::after {
  content: attr(data-slogan);
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 4;
  width: max-content;
  max-width: min(240px, calc(100vw - 40px));
  padding: 7px 10px;
  border: 1px solid rgba(20, 19, 19, 0.08);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 32, 43, 0.14);
  font-size: 12px;
  line-height: 1.15;
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition: opacity 180ms ease;
}

.team-person:hover,
.team-person:focus,
.team-person:focus-visible {
  color: var(--ink);
}

.team-person:hover img,
.team-person:focus img,
.team-person:focus-visible img {
  border-color: rgba(7, 156, 235, 0.44);
  box-shadow: 0 10px 24px rgba(7, 156, 235, 0.16);
  transform: none;
}

.team-person:hover::after,
.team-person:focus::after,
.team-person:focus-visible::after {
  opacity: 1;
  transform: none;
}

.site-footer > a {
  min-width: 112px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer > a img {
  width: 112px;
}

.site-footer > a img[src$="mousely-lockup.png"] {
  width: 124px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 4px 12px;
  white-space: nowrap;
}

.footer-links a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: inherit;
}

.footer-links .footer-social-link {
  width: 44px;
  min-width: 44px;
  padding-inline: 0;
  justify-content: center;
  border-radius: 50%;
  color: inherit;
}

.footer-social-link:hover {
  background: rgba(20, 19, 19, 0.055);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  color: currentColor;
}

.footer-social-icon-x {
  width: 16px;
  height: 16px;
}

/* Compact laptop and tablet: preserve the same centered reveal while the
   navigation and conversion block adapt to the narrower measure. */
@media (max-width: 1180px) {
  .hero-copy {
    width: min(980px, 100%);
    justify-items: center;
    padding-right: 0;
    text-align: center;
  }

  .home-page .hero-actions {
    justify-content: center;
  }

  .hero-downloads-slot {
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .page-hero,
  .beta-card-page,
  .form-page {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero,
  .beta-card-page {
    padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  }

  .faq-section {
    padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  }

  .page-hero p,
  .page-hero .hero-actions,
  .beta-card-copy p,
  .beta-card-copy .hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .beta-card-mark {
    margin-left: auto;
    margin-right: auto;
  }

  .form-page,
  .support-hero {
    text-align: left;
  }

  .form-page > :first-child,
  .support-hero {
    justify-self: start;
  }

  .form-page p,
  .support-hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .support-hero .hero-actions {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .early-access-hero .platform-statuses {
    justify-content: center;
  }

  .early-access-visual {
    width: min(92vw, 640px);
  }

  .early-access-phone-mockup {
    width: min(82vw, 500px);
    transform: translateX(-22%);
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-item {
    min-height: auto;
    padding: 30px 0 34px;
  }

  .feature-item + .feature-item {
    border-top: 1px solid var(--line);
  }

  .feature-item-heading {
    margin-bottom: 30px;
  }

  .closing-cta {
    justify-items: center;
    gap: 42px;
    padding: 72px max(28px, env(safe-area-inset-right)) 64px max(28px, env(safe-area-inset-left));
    text-align: center;
  }

  .closing-mark {
    width: 68px;
    height: 68px;
  }

  .closing-cta h2 {
    max-width: 800px;
    font-size: clamp(38px, 4.6vw, 46px);
    line-height: 1.02;
  }

  .beta-card-art {
    min-height: 340px;
  }

  .text-page {
    text-align: left;
  }

  .support-hero {
    text-align: left;
  }

  .support-hero .hero-actions {
    align-items: flex-start;
  }
}

@media (max-width: 1080px) {
  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer::after {
    content: none;
  }

  .site-footer > a {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-top: 0;
    border-top: 0;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(126px, max-content));
    justify-content: flex-start;
    gap: 0 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .footer-links a {
    justify-content: flex-start;
  }

  .footer-socials {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
    margin-top: 8px;
    padding-block: 8px;
    border-top: 1px solid var(--line);
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: auto;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .footer-credit {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .footer-team {
    justify-content: flex-start;
    gap: 6px 16px;
    max-width: none;
  }

  .team-person::after {
    right: auto;
    left: 0;
    transform-origin: 15% 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --home-fold-top: 70px;
  }

  .home-page {
    /* Keep first-paint hero spacing and the marquee's clipping height on one
       deterministic token. Measuring an absolutely positioned track during
       startup can capture an incomplete Safari layout and lock in clipping. */
    --home-ticker-height: 76px;
  }

  body.home-page.announcement-dismissed {
    --home-fold-top: 70px;
  }

  .site-announcement {
    min-height: 44px;
    font-size: 12px;
  }

  .site-announcement-link {
    gap: 8px;
  }

  .site-shell {
    padding: 12px var(--gutter) 28px;
  }

  .site-header {
    --header-inset: 12px;
    top: 10px;
    min-height: 54px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
    padding: 5px var(--header-inset);
  }

  .brand {
    width: 124px;
    min-width: 124px;
  }

  .brand img {
    width: 124px;
  }

  .brand img[src$="mousely-lockup.png"] {
    width: 124px;
  }

  .brand:active,
  .brand.is-pressing {
    background: transparent;
    box-shadow: none;
    transform: translateY(1px) scale(0.988);
  }

  .brand:active img,
  .brand.is-pressing img {
    filter: grayscale(1) brightness(0.58) contrast(0.88);
    opacity: 0.72;
    transform: scale(0.982);
  }

  .menu-toggle {
    display: block;
    width: 36px;
    height: 36px;
    background: rgba(20, 19, 19, 0.045);
  }

  .mobile-nav-cta {
    position: relative;
    min-width: 84px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(20, 19, 19, 0.13);
  }

  .menu-toggle::before,
  .mobile-nav-cta::before {
    content: "";
    position: absolute;
    inset: -4px;
  }

  .menu-toggle span {
    left: 10px;
    top: 17px;
    width: 16px;
    height: 1.5px;
  }

  .menu-toggle span:first-child {
    transform: translateY(-3px);
  }

  .menu-toggle span:last-child {
    transform: translateY(3px);
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 60;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(20, 19, 19, 0.08);
    border-radius: 22px;
    background: #f3f9ff;
    box-shadow: 0 18px 44px rgba(18, 32, 43, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -8px, 0) scale(0.985);
    filter: blur(3px);
    transition:
      opacity 300ms var(--ease),
      transform 340ms var(--ease),
      filter 260ms var(--ease);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .nav-links a,
  .nav-links .nav-cta {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    margin-left: 0;
    padding-inline: 18px 16px;
    border-radius: 14px;
    background: #f3f9ff;
    color: rgba(20, 19, 19, 0.68);
    box-shadow: none;
    transform: translate3d(0, -3px, 0);
    opacity: 0;
    transition:
      opacity 260ms var(--ease),
      transform 300ms var(--ease),
      background-color 180ms ease,
      color 180ms ease;
  }

  .nav-links a::after,
  .nav-links .nav-cta::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.28;
    transform: scale(0.8);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .nav-links :is(a, .nav-cta) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body.menu-open .nav-links > :nth-child(1) {
    transition-delay: 45ms;
  }

  body.menu-open .nav-links > :nth-child(2) {
    transition-delay: 80ms;
  }

  body.menu-open .nav-links > :nth-child(3) {
    transition-delay: 115ms;
  }

  body.menu-open .nav-links > :nth-child(4) {
    transition-delay: 150ms;
  }

  body.menu-open .nav-links > :nth-child(5) {
    transition-delay: 185ms;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: #e7f4ff;
    color: var(--ink);
  }

  .nav-links a:hover::after,
  .nav-links a[aria-current="page"]::after {
    opacity: 0.74;
    transform: scale(1);
  }

  .nav-links .nav-cta {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 12px 28px rgba(20, 19, 19, 0.12);
  }

  .nav-links .nav-cta {
    display: none;
  }

  .nav-links .nav-cta::after {
    opacity: 0.46;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .home-page main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .early-access-visual {
    width: min(calc(100vw - 40px), 560px);
  }

  .early-access-visual::before {
    width: 100%;
  }

  .early-access-phone-mockup {
    width: min(86vw, 460px);
    transform: none;
  }

  .hero-simple {
    min-height: min(700px, calc(100svh - var(--home-fold-top)));
    height: auto;
    margin-top: 0;
    padding: 0 max(var(--gutter), env(safe-area-inset-right)) var(--home-ticker-height) max(var(--gutter), env(safe-area-inset-left));
    align-items: center;
    justify-items: center;
    border-bottom: 0;
    overflow: visible;
    row-gap: 32px;
  }

  .hero-stage {
    top: -120px;
  }

  .hero-phone img {
    height: 470px;
    max-height: none;
    max-width: min(108vw, 420px);
    /* The device sits at roughly 60% of the source artwork. This offset
       centers the hardware without progressively pushing the hand offscreen
       as the viewport narrows. */
    transform: translate(-15%, 6px);
  }

  .home-page .hero-simple {
    grid-column: 1;
    grid-row: 1;
  }

  .home-page .ticker {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    position: relative;
    z-index: 2;
    margin-top: 0;
    margin-bottom: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #f7fcff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-subcopy,
  .auth-panel [data-auth-intro],
  .account-stage > h1 + p,
  .pricing-hero > h1 + p {
    max-width: 340px;
    margin-top: 16px;
    font-size: 16px;
  }

  .hero-copy {
    padding-top: clamp(72px, 12vh, 96px);
  }

  .hero-copy h1,
  .auth-panel h1,
  .account-stage h1,
  .pricing-hero h1 {
    margin-top: 12px;
    font-size: clamp(34px, 10vw, 48px);
  }

  .home-page .hero-copy h1 {
    max-width: 11ch;
    margin-top: 8px;
    font-size: clamp(46px, 13vw, 54px);
    line-height: 0.98;
    letter-spacing: var(--tracking-display);
  }

  .home-page .hero-subcopy {
    width: min(calc(100vw - 24px), 366px);
    max-width: none;
    margin-top: 20px;
    font-size: clamp(14px, 4.1vw, 16px);
    line-height: 1.45;
  }

  .home-page .hero-actions {
    width: min(100%, 330px);
    margin-top: 26px;
    justify-content: center;
  }

  .home-page .hero-actions > .button {
    min-width: 0;
  }

  .home-page .hero-actions > [data-testflight-download] {
    min-width: 0;
    width: min(100%, 302px);
  }

  .home-page .hero-actions > .button-primary {
    width: min(100%, 184px);
  }

  .hero-platforms {
    width: min(100%, 350px);
    gap: 8px 14px;
    margin-top: 28px;
  }

  .hero-downloads-slot {
    width: min(100%, 324px);
    margin-top: 0;
  }

  .hero-downloads {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .download-group {
    gap: 8px;
  }

  .download-step-title {
    font-size: 12px;
  }

  .hero-downloads .button,
  .hero-downloads .button-testflight-compact {
    width: 116px;
    min-width: 116px;
    min-height: 44px;
    grid-template-columns: auto auto;
    column-gap: 9px;
    padding-inline: 6px;
  }

  .hero-downloads .app-prompts,
  .hero-downloads .receiver-prompts {
    grid-template-columns: 116px 14px 116px;
    gap: 6px;
  }

  .hero-downloads .button .button-label {
    width: auto;
    min-width: 0;
  }

  .hero-downloads .button-testflight-compact .button-label {
    flex-basis: auto;
  }

  .host-prompt {
    max-width: 310px;
    font-size: 13px;
  }

  .receiver-prompts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
    width: min(100%, 326px);
    margin-top: 0;
  }

  .hero-downloads .receiver-prompts {
    width: auto;
  }

  .receiver-prompts .host-prompt {
    width: 100%;
    min-height: 76px;
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: center;
    align-items: start;
    gap: 8px;
    margin: 0;
    text-align: center;
  }

  .receiver-prompts .host-prompt > span:first-child {
    min-height: 0;
    color: rgba(20, 19, 19, 0.58);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
  }

  .receiver-prompts .button {
    width: 100%;
    min-height: 44px;
    display: inline-grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    justify-content: center;
    column-gap: 9px;
  }

  .hero-downloads .receiver-prompts .button {
    width: 116px;
    min-height: 44px;
    grid-template-columns: auto auto;
    column-gap: 9px;
  }

  .receiver-prompts .button-icon {
    justify-self: center;
  }

  .receiver-prompts .button-label {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.18;
    text-align: center;
    white-space: nowrap;
  }

  .download-compatibility {
    max-width: 270px;
    font-size: 10px;
  }

  .hero-stage {
    mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.08) 72px, rgba(0, 0, 0, 0.38) 128px, rgba(0, 0, 0, 0.82) 188px, #000 252px, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.08) 72px, rgba(0, 0, 0, 0.38) 128px, rgba(0, 0, 0, 0.82) 188px, #000 252px, #000 100%);
  }

  .dot-field {
    opacity: 0.74;
    mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.06) 58px, rgba(0, 0, 0, 0.32) 112px, rgba(0, 0, 0, 0.74) 174px, #000 238px, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.06) 58px, rgba(0, 0, 0, 0.32) 112px, rgba(0, 0, 0, 0.74) 174px, #000 238px, #000 100%);
  }

  .ticker {
    --ticker-gap: 10px;
    padding: 0 max(14px, env(safe-area-inset-right)) 0 max(14px, env(safe-area-inset-left));
  }

  .ticker-track {
    top: 14px;
    left: max(14px, env(safe-area-inset-left));
    gap: var(--ticker-gap);
  }

  .ticker-track > span {
    min-height: 46px;
    gap: 9px;
    padding: 0 14px;
    font-size: 14px;
  }

  .ticker .tiny-icon {
    width: 18px;
    height: 18px;
    margin: 0;
  }

  .feature-grid,
  .steps-section,
  .compare-section {
    padding: 64px 0;
  }

  .home-page :is(.feature-grid, .steps-section, .compare-section, .closing-cta) h2 {
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.025em;
  }

  .feature-grid {
    padding-inline: 0;
  }

  .feature-list,
  .step-list {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:nth-child(odd),
  .step-list li {
    min-height: auto;
    border-left: 0;
  }

  .feature-item {
    display: grid;
    justify-items: center;
    padding-inline: 0;
    text-align: center;
  }

  .feature-item h3,
  .feature-item p {
    margin-inline: auto;
  }

  .feature-item + .feature-item,
  .step-list li + li {
    border-top: 1px solid var(--line);
  }

  .tiny-icon,
  .step-list span {
    margin-bottom: 26px;
  }

  .compare-section {
    overflow-x: visible;
    padding-bottom: 36px;
  }

  .compare-heading {
    padding-inline: 10px;
  }

  .compare-heading h2 {
    font-size: clamp(30px, 8.2vw, 34px);
  }

  .compare-table-wrap {
    margin-top: 34px;
  }

  .compare-capability-column {
    width: 40%;
  }

  .compare-mousely-column {
    width: 20%;
  }

  .compare-table {
    font-size: 12px;
  }

  .compare-table th,
  .compare-table td {
    padding: 18px clamp(8px, 2.5vw, 18px);
  }

  .compare-table thead th {
    font-size: 12px;
  }

  .compare-table .compare-device-art {
    width: min(62px, 100%);
    height: auto;
    aspect-ratio: 1;
    margin: -4px auto 7px;
  }

  .compare-device-art img {
    width: 100%;
    height: 100%;
  }

  .compare-device-art-app img {
    width: 60%;
    height: 60%;
  }

  .compare-table thead th > span:not(.compare-device-art) {
    display: flex;
    min-height: 2.4em;
    align-items: flex-end;
    justify-content: center;
  }

  .closing-cta {
    gap: 34px;
    padding: 64px 0 60px;
    text-align: center;
  }

  .closing-copy {
    justify-items: center;
    gap: 20px;
  }

  .closing-mark {
    width: 60px;
    height: 60px;
  }

  .closing-cta h2 {
    max-width: 620px;
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 1.05;
  }

  .closing-copy-body > p {
    max-width: 440px;
    margin-inline: auto;
  }

  .closing-copy-body > .button {
    width: min(100%, 214px);
    min-width: 0;
  }

  .release-status {
    width: min(520px, 100%);
    flex-direction: column;
  }

  .release-row {
    width: 100%;
    min-height: 72px;
    padding: 16px 20px;
  }

  .release-row + .release-row {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .page-hero,
  .beta-card-page,
  .not-found-page,
  .legal-page {
    min-height: auto;
    padding-top: 54px;
  }

  .page-hero,
  .beta-card-page {
    padding-inline: max(10px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-right));
    gap: 30px;
  }

  .faq-section {
    padding-inline: max(10px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-right));
  }

  .legal-page {
    padding-inline: max(10px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-right));
  }

  .page-hero .hero-actions,
  .beta-card-copy .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .page-hero .button,
  .beta-card-copy .button {
    width: min(100%, 302px);
  }

  .page-hero .button-testflight,
  .beta-card-copy .button-testflight {
    flex: none;
  }

  .beta-card-art {
    min-height: 310px;
    overflow: visible;
  }

  .beta-card-surface {
    width: min(100%, 360px);
    min-height: 300px;
  }

  .beta-card-image-front {
    width: min(100%, 320px);
    bottom: 34px;
  }

  .beta-card-image-back {
    right: 8px;
    width: min(38vw, 128px);
  }

  .not-found-page {
    padding-inline: max(10px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-right));
  }

  .contact-form {
    padding: 18px;
    text-align: left;
  }

  .contact-form button {
    width: 100%;
  }

  .contact-form .mwl-turnstile {
    justify-content: flex-start;
  }

  .support-hero {
    text-align: left;
  }

  .support-hero .hero-actions {
    align-items: flex-start;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 56px;
    padding-inline: 0;
    border-top: 0;
  }

  .site-footer > a {
    width: 100%;
    padding-top: 22px;
    padding-bottom: 16px;
    border-top: 1px solid var(--line);
  }

  .footer-links {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
    gap: 2px 28px;
    padding-top: 18px;
    padding-bottom: 0;
    border-top: 1px solid var(--line);
  }

  .footer-socials {
    align-self: stretch;
    padding-block: 13px;
  }

  .site-footer p {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    width: 100%;
    min-width: 0;
    padding-top: 18px;
    padding-inline: 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .footer-credit {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .footer-team {
    justify-content: flex-start;
    gap: 8px 16px;
  }
}

@media (max-width: 520px) {
  .footer-credit {
    width: 100%;
    max-width: none;
    gap: 10px;
  }

  .footer-credit-label {
    font-size: 14px;
  }

  .footer-team {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px 14px;
  }

  .team-person {
    min-width: 0;
    min-height: 48px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
    text-align: left;
    font-size: 13px;
    white-space: nowrap;
  }

  .team-person img {
    width: 32px;
    height: 32px;
  }

  .team-person::after {
    content: "" !important;
    display: none;
    left: 50%;
    right: auto;
    transform: none;
  }

  .team-person:hover::after,
  .team-person:focus::after,
  .team-person:focus-visible::after {
    transform: none;
  }
}

@media (max-width: 380px) {
  .site-announcement strong {
    display: none;
  }

  .hero-phone img {
    /* The source artwork has transparent space above the phone. Pull that
       space through the crop so the device itself remains visible on the
       shortest, narrowest screens. */
    transform: translate(-15%, -24px);
  }

  .contact-form {
    padding: 14px;
  }

  .contact-form .mwl-turnstile > * {
    transform: scale(0.9);
    transform-origin: left top;
  }
}

@media (max-width: 370px) {
  .brand {
    width: 110px;
    min-width: 110px;
  }

  .brand img {
    width: 110px;
  }

  .brand img[src$="mousely-lockup.png"] {
    width: 110px;
  }

  .auth-panel h1,
  .account-stage h1,
  .pricing-hero h1 {
    margin-top: 6px;
    font-size: 38px;
  }

  .home-page .hero-copy h1 {
    max-width: 11ch;
    margin-top: 6px;
    font-size: 44px;
  }

  .hero-copy {
    padding-top: 64px;
  }

  .hero-subcopy,
  .auth-panel [data-auth-intro],
  .account-stage > h1 + p,
  .pricing-hero > h1 + p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.38;
  }

  .home-page .hero-actions {
    margin-top: 22px;
  }

  .home-page .hero-actions .button {
    padding-inline: 14px;
    font-size: 14px;
  }

  .hero-platforms {
    gap: 6px 10px;
    margin-top: 10px;
    font-size: 11px;
  }

  .hero-platform-soon small {
    display: none;
  }

  .site-header {
    --header-inset: 10px;
    gap: 8px;
  }

  .feature-grid {
    padding-inline: 10px;
  }

  .release-row {
    flex-direction: column;
    gap: 12px;
  }

  .release-platforms {
    gap: 16px;
  }

  .receiver-prompts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .receiver-prompts .button {
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 6px;
    padding-inline: 6px;
    font-size: 12px;
  }

  .hero-downloads-slot {
    width: min(100%, 280px);
  }

  .hero-downloads {
    width: 100%;
  }

  .hero-downloads .button,
  .hero-downloads .button-testflight-compact {
    width: 116px;
    min-width: 116px;
    grid-template-columns: auto auto;
    column-gap: 9px;
    padding-inline: 6px;
  }

  .hero-downloads .app-prompts,
  .hero-downloads .receiver-prompts {
    grid-template-columns: 116px 14px 116px;
    gap: 6px;
  }

  .hero-downloads .button .button-label {
    width: auto;
    min-width: 0;
  }

  .hero-downloads .button-testflight-compact .button-label {
    flex-basis: auto;
  }

  .receiver-prompts .button-label {
    min-height: 0;
  }

  .early-access-visual::before {
    width: 100%;
  }

}

@media (prefers-contrast: more) {
  :root {
    --muted: #45413f;
    --muted-soft: #56514e;
    --line: rgba(20, 19, 19, 0.26);
  }

  .dot-field {
    opacity: 0.25;
  }

  .ticker-track > span {
    background: #fff;
  }

  .compare-table-wrap {
    border-color: var(--line);
    background: #fff;
    box-shadow: none;
  }

  .compare-table .is-muted {
    color: #45413f;
  }

}

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

  .ticker-track {
    animation: none !important;
    transform: none;
  }

  .beta-card-surface {
    transform: none;
  }

  .js main {
    animation: none;
  }
}

.download-spotlight-backdrop {
  position: fixed;
  inset: 0 0 calc(-1 * env(safe-area-inset-bottom)) 0;
  z-index: 900;
  width: auto;
  height: auto;
  min-height: 100dvh;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(20, 19, 19, 0.46);
  opacity: 0;
  pointer-events: none;
  cursor: default;
  touch-action: none;
  backdrop-filter: blur(10px) saturate(0.82);
  -webkit-backdrop-filter: blur(10px) saturate(0.82);
  transition: opacity 220ms ease;
  will-change: opacity;
}

body.download-spotlight-open .download-spotlight-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.download-spotlight-open .site-shell > main {
  animation: none;
  filter: none;
  transform: none;
  will-change: auto;
}

body.download-spotlight-open .hero-simple {
  isolation: auto;
}

.download-spotlight-close {
  display: none;
}

.hero-downloads.is-spotlighted {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 901;
  width: min(calc(100vw - 32px), 620px);
  max-height: calc(100dvh - 32px);
  margin: 0;
  padding: 30px 28px 24px;
  grid-template-columns: auto auto;
  column-gap: 32px;
  row-gap: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0, rgba(7, 156, 235, 0.1), transparent 46%),
    rgba(249, 253, 255, 0.98);
  box-shadow:
    0 0 0 1px rgba(7, 156, 235, 0.1),
    0 0 42px rgba(7, 156, 235, 0.2),
    0 30px 90px rgba(5, 22, 34, 0.34);
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: download-spotlight-enter 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: opacity, transform;
}

@keyframes download-spotlight-enter {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 14px)) scale(0.975);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.hero-downloads.is-spotlighted .download-spotlight-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(20, 19, 19, 0.58);
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms var(--ease);
}

.hero-downloads.is-spotlighted .download-spotlight-close:hover {
  background: rgba(20, 19, 19, 0.07);
  color: var(--ink);
}

.hero-downloads.is-spotlighted .download-spotlight-close:active {
  transform: scale(0.94);
}

.download-spotlight-close svg {
  width: 20px;
  height: 20px;
}

.hero-downloads.is-spotlighted .download-group {
  gap: 10px;
}

.hero-downloads.is-spotlighted .download-group h3 {
  color: rgba(20, 19, 19, 0.76);
}

.hero-downloads.is-spotlighted .button,
.hero-downloads.is-spotlighted .button-testflight-compact {
  min-height: 44px;
}

.hero-downloads.is-spotlighted :is([data-testflight-download], [data-windows-download], [data-macos-download]) {
  border-color: rgba(7, 156, 235, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 4px rgba(7, 156, 235, 0.07),
    0 10px 28px rgba(7, 156, 235, 0.13);
}

.hero-downloads.is-spotlighted [data-testflight-download] {
  color: var(--ink);
}

.hero-downloads.is-spotlighted :is([data-testflight-download], [data-windows-download], [data-macos-download]):hover,
.hero-downloads.is-spotlighted :is([data-testflight-download], [data-windows-download], [data-macos-download]):focus-visible {
  border-color: rgba(7, 156, 235, 0.48);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(7, 156, 235, 0.12),
    0 14px 34px rgba(7, 156, 235, 0.2);
}

@media (max-width: 760px) {
  .download-spotlight-backdrop {
    backdrop-filter: blur(6px) saturate(0.88);
    -webkit-backdrop-filter: blur(6px) saturate(0.88);
  }

  .hero-downloads.is-spotlighted {
    width: min(calc(100vw - 24px), 380px);
    max-height: calc(100dvh - 24px);
    padding: 30px 18px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (prefers-contrast: more) {
  .download-spotlight-backdrop {
    background: rgba(20, 19, 19, 0.68);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-downloads.is-spotlighted {
    border: 2px solid var(--blue-deep);
    background: #fff;
  }
}

/* Browser zoom and short landscape windows need room for the complete
   conversion block; let the page scroll instead of letting the ticker cover it. */
@media (max-height: 600px) {
  .hero-simple {
    height: auto;
    min-height: 620px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .download-spotlight-backdrop,
  .hero-downloads.is-spotlighted,
  .hero-downloads.is-spotlighted .download-spotlight-close {
    animation: none;
    transition: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.account-page,
.pricing-page {
  background:
    radial-gradient(circle at 82% 8rem, rgba(7, 156, 235, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--page-sky) 0%, var(--paper) 46%, var(--page-sky-deep) 100%);
}

.auth-page {
  background: #fff;
}

.auth-page .site-shell {
  min-height: 100svh;
  padding: 0 var(--gutter);
  background: #fff;
}

.auth-page .site-shell::before,
.auth-page .site-header,
.auth-page .site-footer {
  display: none;
}

.auth-page main {
  min-height: 100svh;
  display: grid;
}

.auth-stage,
.account-stage,
.pricing-hero,
.pricing-plans {
  width: min(var(--content-wide), 100%);
  margin-inline: auto;
}

.auth-stage,
.account-stage {
  position: relative;
  isolation: isolate;
  min-height: min(560px, calc(100svh - 112px));
  display: grid;
  align-items: center;
  padding: var(--page-space-top) 0 36px;
}

.auth-stage {
  justify-items: center;
  text-align: center;
  width: min(100%, 400px);
  min-height: 100svh;
  padding-block: clamp(40px, 8vh, 72px) 32px;
}

.auth-stage-dots,
.pricing-hero-dots {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.7) 46%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.7) 46%, transparent 76%);
}

.auth-stage-dots .dot-field,
.pricing-hero-dots .dot-field {
  width: 100%;
  height: 100%;
}

.auth-panel {
  width: min(100%, 360px);
}

.auth-panel h1,
.auth-panel [data-auth-intro] {
  margin-inline: auto;
}

.auth-brand-mark {
  width: 64px;
  height: 64px;
  display: inline-flex;
  border-radius: 14px;
}

.auth-brand-mark:focus-visible {
  outline: 3px solid rgba(7, 156, 235, 0.28);
  outline-offset: 4px;
}

.auth-brand-icon {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 14px;
}

.auth-panel h1 {
  margin-top: 20px;
  font-size: clamp(27px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.auth-panel [data-auth-intro] {
  max-width: 32ch;
  margin-top: 8px;
  color: rgba(20, 19, 19, 0.58);
  font-size: 14px;
  line-height: 1.45;
}

.auth-provider-group {
  margin-top: 22px;
}

.auth-provider-buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.auth-provider-button {
  width: 100%;
  min-width: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(20, 19, 19, 0.16);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.auth-provider-button:hover,
.auth-provider-button:focus-visible {
  border-color: rgba(20, 19, 19, 0.3);
  background: #f7f7f8;
}

.auth-provider-button:focus-visible {
  outline: 3px solid rgba(7, 156, 235, 0.28);
  outline-offset: 3px;
}

.auth-provider-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
}

.auth-provider-button.is-unavailable {
  border-color: rgba(169, 35, 35, 0.48);
  background: rgba(169, 35, 35, 0.07);
  box-shadow: none;
  opacity: 1;
  animation: auth-provider-nudge 300ms var(--ease);
}

.auth-provider-button.is-unavailable:focus-visible {
  outline: 2px solid rgba(169, 35, 35, 0.2);
  outline-offset: 2px;
}

.auth-provider-button[data-auth-provider-soon][aria-disabled="true"] {
  color: var(--muted);
  background: #fbfcfd;
  cursor: pointer;
  opacity: 1;
}

.auth-provider-button.is-coming-soon {
  border-color: rgba(7, 156, 235, 0.46);
  background: rgba(7, 156, 235, 0.08);
  box-shadow: 0 0 0 3px rgba(7, 156, 235, 0.08);
  opacity: 1;
}

.auth-provider-button.is-coming-soon:focus-visible {
  outline-color: rgba(7, 156, 235, 0.36);
}

.auth-provider-button img {
  width: 40px;
  height: 40px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.auth-provider-button[data-auth-provider-google] img {
  width: 20px;
  height: 20px;
  margin-inline: auto;
}

.auth-provider-identity {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.auth-provider-identity::after {
  content: "";
  width: 40px;
  height: 1px;
}

.auth-provider-note {
  margin: 9px 0 0;
  color: rgba(20, 19, 19, 0.5);
  font-size: 12px;
  line-height: 1.4;
}

.auth-provider-status {
  margin: 8px 0 0;
  font-size: 12px;
  text-align: center;
}

.auth-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  color: rgba(20, 19, 19, 0.48);
  font-size: 12px;
}

.auth-legal a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.auth-legal a:hover,
.auth-legal a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes auth-provider-nudge {
  0%, 100% { transform: translateX(0); }
  35% { transform: translateX(-3px); }
  70% { transform: translateX(3px); }
}

@media (max-width: 560px) {
  .auth-stage {
    min-height: 100svh;
    padding-block: 32px 24px;
  }

  .auth-panel {
    width: 100%;
  }

  .auth-brand-mark,
  .auth-brand-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .auth-panel h1 {
    margin-top: 18px;
    font-size: 28px;
  }
}

.account-page {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 48%, #f8fcff 100%);
}

.account-stage {
  width: min(1120px, 100%);
  min-height: auto;
  display: block;
  padding: clamp(120px, 13vw, 156px) 0 clamp(72px, 9vw, 112px);
}

.account-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--line);
}

.account-page-heading h1 {
  margin: 0;
}

.account-page-heading > div > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.account-status {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 6px 11px;
  border: 1px solid rgba(7, 156, 235, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.account-status span,
.account-session-state span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.account-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 6vw, 72px);
  padding-top: 44px;
}

.account-sidebar {
  position: sticky;
  top: 112px;
}

.account-sidebar > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-sidebar a,
.account-sidebar li > span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  border-radius: var(--radius-control);
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.account-sidebar a[aria-current="page"] {
  background: rgba(7, 156, 235, 0.09);
  color: var(--ink);
  font-weight: 600;
}

.account-sidebar small {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.account-content {
  min-width: 0;
  max-width: 760px;
}

.account-profile {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 4px 0 30px;
  border-bottom: 1px solid var(--line);
}

.account-profile-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 156, 235, 0.14);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #eaf7ff);
}

.account-profile-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.account-profile .eyebrow {
  margin: 0 0 5px;
}

.account-profile h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.022em;
}

.account-session-state,
.account-coming-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.account-settings-group {
  margin-top: 50px;
}

.account-settings-group > header {
  margin-bottom: 16px;
}

.account-settings-group > header h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.022em;
}

.account-settings-group > header p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.account-settings-list {
  border-top: 1px solid var(--line);
}

.account-setting-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.account-setting-row h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
}

.account-setting-row > div > p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.account-email {
  min-width: 0;
  margin: 0;
  padding: 12px 14px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(20, 19, 19, 0.1);
  border-radius: var(--radius-control);
  background: rgba(247, 251, 255, 0.82);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.account-sign-out {
  min-width: 88px;
  min-height: 44px;
  justify-self: end;
  padding: 0 16px;
  border: 1px solid rgba(20, 19, 19, 0.14);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.account-sign-out:hover,
.account-sign-out:focus-visible {
  border-color: rgba(20, 19, 19, 0.3);
  background: #fff;
}

.account-sign-out:focus-visible {
  outline: 3px solid rgba(7, 156, 235, 0.25);
  outline-offset: 3px;
}

.account-banner:empty {
  display: none;
}

.account-banner {
  margin: 16px 0 0;
}

.plan-note {
  max-width: 52ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.plan-note:focus {
  outline: none;
}

.dev-preview-label {
  margin: 18px 0 -24px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dev-account-preview .account-sign-out:disabled {
  cursor: default;
  opacity: 0.56;
}

.button[aria-disabled="true"] {
  cursor: default;
  opacity: 0.72;
}

.button[aria-disabled="true"]:hover,
.button[aria-disabled="true"]:active {
  transform: none;
}

.pricing-hero {
  position: relative;
  isolation: isolate;
  min-height: unset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--page-space-top) 0 36px;
}

.pricing-plans {
  padding: 8px 0;
}

.pricing-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}

.pricing-card {
  --tier-accent: #079ceb;
  --pricing-shine-x: 50%;
  --pricing-shine-y: 18%;
  min-width: 0;
}

.pricing-card-surface {
  height: 100%;
  padding: 1px;
  border-radius: var(--radius-product);
  background: linear-gradient(180deg, rgba(7, 156, 235, 0.18), rgba(20, 19, 19, 0.08));
  box-shadow: var(--shadow-soft);
  transition: box-shadow 240ms ease;
}

.pricing-card-free .pricing-card-surface {
  background: linear-gradient(180deg, rgba(20, 19, 19, 0.1), rgba(20, 19, 19, 0.06));
}

.pricing-card-featured .pricing-card-surface {
  background: linear-gradient(180deg, rgba(7, 156, 235, 0.5), rgba(7, 156, 235, 0.14));
}

.pricing-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  padding: clamp(22px, 2.2vw, 28px);
  border-radius: calc(var(--radius-product) - 1px);
  background: #f7fbff;
  text-align: left;
}

.pricing-card-free .pricing-card-content {
  background: linear-gradient(180deg, var(--surface-solid) 0%, var(--paper-shade) 100%);
}

.pricing-card-featured .pricing-card-content {
  background: linear-gradient(180deg, var(--surface-solid) 0%, var(--blue-wash) 100%);
}

.pricing-card-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--pricing-shine-x) var(--pricing-shine-y), rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0.16) 22%, transparent 46%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.pricing-card-header {
  display: grid;
  gap: 6px;
}

.pricing-tier-name {
  margin: 0 0 clamp(12px, 1.6vw, 20px);
  color: var(--muted);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.pricing-card-featured .pricing-tier-name {
  color: var(--blue-deep);
}

.pricing-price {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card-featured .pricing-price {
  color: var(--blue-deep);
}

.pricing-cadence {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.pricing-includes {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.pricing-card-featured .pricing-cadence {
  color: var(--blue-ink);
}

.pricing-includes strong {
  color: var(--ink);
  font-weight: 600;
}

.pricing-features {
  margin-top: auto;
}

.pricing-features ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.pricing-features li + li {
  margin-top: 8px;
}

.pricing-footnote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.pricing-card .button {
  width: 100%;
}

.pricing-card.is-lit .pricing-card-surface {
  box-shadow: 0 22px 48px rgba(18, 32, 43, 0.12);
}

.pricing-card.is-lit .pricing-card-content::before {
  opacity: 0.9;
}

.pricing-plans > .plan-note {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .pricing-section-heading,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .account-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 36px;
  }

  .pricing-hero,
  .pricing-section-heading,
  .account-stage {
    text-align: left;
  }

  .pricing-plans > .plan-note {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .account-stage {
    padding-top: 104px;
  }

  .account-page-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .account-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 30px;
  }

  .account-sidebar {
    position: static;
  }

  .account-sidebar > p {
    display: none;
  }

  .account-sidebar ul {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .account-sidebar li {
    flex: 1 1 0;
  }

  .account-sidebar a,
  .account-sidebar li > span {
    justify-content: center;
    padding-inline: 9px;
  }

  .account-sidebar small {
    display: none;
  }
}

@media (max-width: 560px) {
  .account-stage {
    padding-top: 88px;
  }

  .account-page-heading {
    padding-bottom: 24px;
  }

  .account-sidebar {
    display: none;
  }

  .account-layout {
    padding-top: 28px;
  }

  .account-profile {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 24px;
  }

  .account-session-state {
    grid-column: 2;
    justify-self: start;
  }

  .account-settings-group {
    margin-top: 40px;
  }

  .account-setting-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 17px;
  }

  .account-sign-out,
  .account-coming-label {
    justify-self: start;
  }

  .account-email {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .footer-links {
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (prefers-contrast: more) {
  .pricing-card-content,
  .pricing-card-free .pricing-card-content,
  .pricing-card-featured .pricing-card-content {
    background: #fff;
    border-color: var(--line-strong);
  }

  .account-page-heading,
  .account-profile,
  .account-settings-list,
  .account-setting-row {
    border-color: var(--line-strong);
  }

  .account-status,
  .account-profile-mark,
  .account-email,
  .account-sign-out {
    border-color: currentColor;
  }

  .pricing-card-surface {
    background: var(--ink);
  }

  .pricing-card-featured .pricing-tier-name,
  .pricing-card-featured .pricing-price,
  .pricing-card-featured .pricing-cadence {
    color: var(--blue-ink);
  }

  .auth-provider-button {
    border-color: var(--line-strong);
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-provider-button.is-unavailable {
    animation: none;
  }
