/* The homepage uses separate desktop/mobile stylesheets. Keep download badges styled in both. */
.distribution-download {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.store-badge-link {
  display: inline-flex;
  width: 150px;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}
.store-badge-link:hover { transform: translateY(-2px); filter: brightness(1.08); }
.store-badge-link:focus-visible { outline: 2px solid var(--volt); outline-offset: 4px; }
.app-store-badge-link img { display: block; width: 150px; height: 50px; }
.android-store-button {
  gap: 9px;
  border: 1px solid #a6a6a6;
  background: #050505;
  color: #fff;
  font-family: var(--display, var(--font));
}
.android-store-button svg { width: 27px; height: 27px; flex: none; fill: #3ddc84; }
.store-badge-copy { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.store-badge-kicker { font-size: 9px; font-weight: 600; letter-spacing: 0.02em; }
.store-badge-label { margin-top: 3px; font-size: 20px; font-weight: 650; letter-spacing: -0.025em; }
.distribution-note { margin: 0; color: var(--night-ink, var(--ink)); font-size: 13px; line-height: 1.45; }
.cta .distribution-note { color: rgba(14, 15, 10, 0.68); }
.cta .store-badge-link:focus-visible { outline-color: var(--night); }

.android-waitlist-dialog {
  width: min(calc(100% - 32px), 520px);
  max-height: min(calc(100dvh - 32px), 680px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--night-line, var(--line));
  border-radius: 24px;
  background: var(--night-card, var(--surface));
  color: var(--night-ink, var(--ink));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}
.android-waitlist-dialog:not([open]) { display: none; }
.android-waitlist-dialog::backdrop { background: rgba(3, 4, 2, 0.78); backdrop-filter: blur(5px); }
.android-waitlist-card { position: relative; padding: clamp(28px, 6vw, 44px); }
.android-waitlist-card .micro { margin: 0 0 12px; color: var(--volt); }
.android-waitlist-card h2 { margin: 0; font-size: clamp(30px, 6vw, 42px); line-height: 1.04; letter-spacing: -0.035em; }
.android-waitlist-card > p:not(.micro) { max-width: 42ch; margin: 18px 0 0; color: var(--night-muted, var(--muted)); }
.android-dialog-close {
  min-width: 44px;
  min-height: 44px;
  float: right;
  margin: -10px -12px 12px 16px;
  padding: 0 12px;
  border: 1px solid var(--night-line, var(--line));
  border-radius: 999px;
  background: transparent;
  color: var(--night-ink, var(--ink));
  cursor: pointer;
  font: 750 13px/1 var(--display, var(--font));
}
.android-dialog-close:hover { border-color: var(--volt); }
.android-waitlist-form { max-width: none; margin-top: 26px; }
.android-waitlist-fields > label { display: block; margin-bottom: 9px; font-size: 14px; font-weight: 750; }
.android-waitlist-fields[hidden] { display: none; }
.android-waitlist-form .signup-note { color: var(--night-muted, var(--muted)); }
.android-waitlist-form .signup-note a { color: var(--volt); }

.mobile-home .distribution-download { align-items: center; }
.mobile-home .store-badges { justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  .store-badge-link { transition: none; }
  .store-badge-link:hover { transform: none; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
