/* Quiet app-store availability cues for the marketing home page. Live URLs
   continue to come from marketing/js/site-config.mjs. */
.store-icon-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.store-icon-link {
  width: 44px;
  min-height: 60px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ink-soft);
  text-decoration: none;
}

.store-icon-link:hover {
  background: rgba(241,231,216,.58);
  color: var(--terracotta-dark);
}

.store-mark {
  width: 18px;
  height: 21px;
  fill: currentColor;
}

.store-mark-apple {
  width: 17px;
}

.pricing-store-links {
  margin: 2px 0 -4px;
}

.waitlist-store-links {
  margin-top: 8px;
}

.waitlist-store-links .store-icon-link {
  color: #fff;
}

.waitlist-store-links .store-icon-link:hover {
  background: rgba(255,255,255,.09);
  color: #fff;
}

.modal-store-links {
  margin: 0 0 -6px;
}

.stores-section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.stores-inner {
  align-items: center;
  gap: 20px;
}

.stores-inner p.footer-app-line {
  max-width: none;
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
  }

  .site-nav .language-switcher {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .site-nav .language-switcher select {
    width: 100%;
    max-width: none;
  }

  .stores-inner {
    align-items: center;
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  .site-nav {
    top: 72px;
    right: 15px;
    left: 15px;
  }
}

@media (max-width: 420px) {
  .site-nav .language-switcher {
    position: static;
  }

  .site-nav .language-switcher::after {
    display: none;
  }

  .site-nav .language-switcher select {
    width: 100%;
    padding-inline: 12px;
    color: var(--ink);
  }

  .stores-inner {
    gap: 10px;
  }

  .stores-inner p.footer-app-line {
    font-size: .79rem;
  }
}

@media (max-width: 360px) {
  .header-inner {
    gap: 6px;
  }

  .header-inner .wordmark {
    gap: 6px;
    font-size: 1.03rem;
  }

  .header-inner .brand-fold {
    width: 26px;
    height: 26px;
  }

  .menu-button {
    padding-inline: 10px;
  }
}
