/* ── Home site footer (below poster) ── */

.home-site-footer {
  margin-top: 4px;
  padding: 28px 16px calc(20px + var(--safe-b));
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.4) 0%, rgba(6, 12, 24, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.home-footer-logo {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.home-footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.home-footer-tagline {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  text-align: center;
}

.home-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.home-footer-social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 11px;
  background: rgba(15, 23, 42, 0.85);
  color: rgba(248, 250, 252, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.home-footer-social-btn:hover {
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(30, 58, 138, 0.35);
  color: var(--accent-cyan);
}

.home-footer-social-btn svg {
  width: 18px;
  height: 18px;
}

.home-footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.home-footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
}

.home-footer-link {
  border: none;
  background: none;
  padding: 4px 2px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(248, 250, 252, 0.92);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease;
}

.home-footer-link:hover {
  color: var(--accent-cyan);
}

.home-footer-payments {
  padding: 12px 10px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(8, 14, 28, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-footer-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.home-footer-pay-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 4px 6px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.home-footer-pay-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.home-footer-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.home-footer-verified {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-footer-verified svg {
  width: 16px;
  height: 16px;
}

.home-footer-copy-text {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-tertiary);
  text-align: center;
}

@media (max-width: 380px) {
  .home-footer-pay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-footer-nav-row {
    gap: 8px 14px;
  }

  .home-footer-link {
    font-size: 12px;
  }
}
