/* ─── Nav ─── */
nav.top {
  position: sticky; top: 0; z-index: 30;
  background: rgba(250, 249, 245, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
nav.top.scrolled { border-bottom-color: var(--hue); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 36px; height: 36px; border-radius: 9px;
  overflow: hidden; border: 1px solid rgba(20,20,19,0.06);
  box-shadow: 0 2px 6px rgba(6,46,38,0.06);
}
.brand-logo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand-name {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 19px; letter-spacing: -0.5px; color: var(--p900);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--t2);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--t1); }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ─── Store Badges ─── */
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: 11px;
  background: #111; color: white;
  text-decoration: none; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}
.store-badge:hover { background: #222; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.22); }
.store-badge svg { flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; }
.store-badge-sub { font-size: 9.5px; font-weight: 500; opacity: 0.72; line-height: 1; }
.store-badge-name { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -0.2px; line-height: 1.35; }
.store-badge-sm .store-badge-name { font-size: 13px; }
.store-badge-sm .store-badge-sub { font-size: 9px; }
.store-badge-sm { padding: 7px 13px; gap: 8px; border-radius: 9px; }
.store-badge-on-dark {
  background: white; color: #000;
  border: none; box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.store-badge-on-dark:hover { background: #f5f5f5; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(0,0,0,0.28); }
.store-badges-nav { display: flex; gap: 8px; }
@media (max-width: 760px) {
  .store-badges-nav { display: none; }
}

/* ─── Footer ─── */
footer.foot {
  padding: 48px 0 36px;
  background: var(--bg);
  border-top: 1px solid var(--hue);
}
.foot-grid {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.foot-meta { font-size: 13px; color: var(--t3); }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 13px; color: var(--t3); }
.foot-links a:hover { color: var(--t1); }
