/* OFOQ brand footer — shared menu + landing */
.ofoq-brand {
  position: fixed;
  bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 6800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border-radius: 999px;
  font-family: 'Inter', 'Cairo', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-decoration: none;
  color: #5eead4;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.28);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 22px rgba(45, 212, 191, 0.14);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s, border-color 0.2s;
}
.ofoq-brand:active { transform: translateX(-50%) scale(0.96); }
.ofoq-brand:hover {
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: 0 0 28px rgba(45, 212, 191, 0.22);
}

.ofoq-brand--inline {
  position: static;
  transform: none;
  text-indent: 0;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  font-size: 0.78rem;
}
.ofoq-brand--inline:active { transform: scale(0.96); }

.ofoq-brand--menu {
  position: static;
  transform: none;
  letter-spacing: 0.15em;
}
.ofoq-brand--inline:hover { transform: none; }

.ofoq-brand--landing {
  position: fixed;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}

#loading-overlay:not(.hidden) ~ .ofoq-brand,
#entrance:not(.hidden) ~ .ofoq-brand {
  opacity: 0;
  pointer-events: none;
}
